Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,514 for retain (0.24 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    		if hasOwnerRef(claim, set) ||
    			hasOwnerRef(claim, pod) {
    			return false
    		}
    	case policy.WhenScaled == retain && policy.WhenDeleted == delete:
    		if !hasOwnerRef(claim, set) ||
    			hasOwnerRef(claim, pod) {
    			return false
    		}
    	case policy.WhenScaled == delete && policy.WhenDeleted == retain:
    		if hasOwnerRef(claim, set) {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Message.java

     *
     */
    public interface Message {
    
        /**
         * Indicate that this message should retain it's raw payload
         */
        void retainPayload ();
    
    
        /**
         * 
         * @return whether to retain the message payload
         */
        boolean isRetainPayload ();
    
    
        /**
         * 
         * @return the raw response message
         */
        byte[] getRawPayload ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue45045.go

    	h.Data = uintptr(unsafe.Pointer(&b[0]))
    	h.Len = len(b)
    	return s
    }
    
    func main() {
    	{
    		c := make(chan string, 2)
    		m := make(map[string]int)
    		m[k(c, "first")] = 0
    		m[k(c, "second")] = 0
    		runtime.GC()
    		if s := <-c; s != "first" {
    			panic("map[string], second key did not retain.")
    		}
    		runtime.KeepAlive(m)
    	}
    
    	{
    		c := make(chan string, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 28 03:27:04 UTC 2021
    - 997 bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

         */
        abstract val unshadedPackages: SetProperty<String>
    
        /**
         * Do not retain classes in the ignore packages hierarchies, unless reachable from some other retained class.
         */
        abstract val ignoredPackages: SetProperty<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                  enum:
                    - Delete
                    - Retain
                  type: string
                driver:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. testing/precondition-tester/src/integTest/.gitkeep

    Retain this directory so :generateSubprojectInfo will be willing to do integration testing for this project...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 108 bytes
    - Viewed (0)
  7. testing/precondition-tester/src/crossVersionTest/.gitkeep

    Retain this directory so :generateSubprojectInfo will be willing to do cross-version testing for this project...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 110 bytes
    - Viewed (0)
  8. okhttp-android/src/test/kotlin/okhttp3/android/AndroidLoggingTest.kt

        assertThat(logs.map { it.msg }).containsExactly(
          "--> GET http://google.com/robots.txt",
          "<-- HTTP FAILED: java.net.UnknownHostException: shortcircuit",
        )
        // We should consider if these logs should retain Exceptions
        assertThat(logs.last().throwable).isNull()
      }
    
      @Test
      fun testLoggingEventListener() {
        val client =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/encoding/encoding.go

    // unmarshal a binary representation of itself.
    //
    // UnmarshalBinary must be able to decode the form generated by MarshalBinary.
    // UnmarshalBinary must copy the data if it wishes to retain the data
    // after returning.
    type BinaryUnmarshaler interface {
    	UnmarshalBinary(data []byte) error
    }
    
    // TextMarshaler is the interface implemented by an object that can
    // marshal itself into a textual form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. internal/bucket/object/lock/lock_test.go

    	tests := []struct {
    		value       DefaultRetention
    		expectedErr error
    		expectErr   bool
    	}{
    		{
    			value:       DefaultRetention{Mode: "retain"},
    			expectedErr: fmt.Errorf("unknown retention mode retain"),
    			expectErr:   true,
    		},
    		{
    			value:       DefaultRetention{Mode: RetGovernance},
    			expectedErr: fmt.Errorf("either Days or Years must be specified"),
    			expectErr:   true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top