Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,156 for retain (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/debugging/README.md

            "fe012443-6ba9-4ef2-bb94-b729d2060c78/test123/testw3c.pdf/xl.meta": {"Version...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/values.yaml

      waitForResourcesTimeout: 300s
    
      # Used for helm2 to add the CRDs to templates.
      enableCRDTemplates: false
    
      # revision for the operator resources
      revision: ""
    
      # The number of old ReplicaSets to retain in operator deployment
      deploymentHistory: 10
    
      # Operator resource defaults
      operator:
        monitoring:
          host: 127.0.0.1
          port: 15014
        resources:
          limits:
            cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top