Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for variants (0.36 sec)

  1. cmd/generic-handlers.go

    		header.Set("X-Content-Type-Options", "nosniff")                                // Prevent mime-sniff
    		header.Set("Strict-Transport-Security", "max-age=31536000; includeSubDomains") // HSTS mitigates variants of MITM attacks
    
    		// Previously, this value was set right before a response was sent to
    		// the client. So, logger and Error response XML were not using this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/internal/poll/fd_unix.go

    func (fd *FD) Dup() (int, string, error) {
    	if err := fd.incref(); err != nil {
    		return -1, "", err
    	}
    	defer fd.decref()
    	return DupCloseOnExec(fd.Sysfd)
    }
    
    // On Unix variants only, expose the IO event for the net code.
    
    // WaitWrite waits until data can be written to fd.
    func (fd *FD) WaitWrite() error {
    	return fd.pd.waitWrite(fd.isFile)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicOr32", argLength: 3, typ: "(Uint32, Mem)", hasSideEffects: true},             // *arg0 |= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    
    	// Atomic operation variants
    	// These variants have the same semantics as above atomic operations.
    	// But they are used for generating more efficient code on certain modern machines, with run-time CPU feature detection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/crypto/tls/cipher_suites.go

    //
    //   - Anything else comes before RC4
    //
    //     RC4 has practically exploitable biases. See https://www.rc4nomore.com.
    //
    //   - Anything else comes before CBC_SHA256
    //
    //     SHA-256 variants of the CBC ciphersuites don't implement any Lucky13
    //     countermeasures. See http://www.isg.rhul.ac.uk/tls/Lucky13.html and
    //     https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashMap.java

      /*
       * TODO: Make this a drop-in replacement for j.u. versions, actually drop them in, and test the
       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashMap.java

      /*
       * TODO: Make this a drop-in replacement for j.u. versions, actually drop them in, and test the
       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. pkg/kube/inject/webhook.go

    			pod.Annotations = map[string]string{}
    		}
    		// if a user sets `prometheus/io/path: foo`, then we add `prometheus.io/path: /stats/prometheus`
    		// prometheus will pick a random one
    		// need to clear out all variants and then set ours
    		clearPrometheusAnnotations(pod)
    		pod.Annotations["prometheus.io/port"] = targetPort
    		pod.Annotations["prometheus.io/path"] = "/stats/prometheus"
    		pod.Annotations["prometheus.io/scrape"] = "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            "changing project library variant metadata"            | "-DprojectLibAttrValue=new-value"
            "changing unselected project library variant metadata" | "-DprojectUnselectedLibAttrValue=new-value"
            "changing included library variant metadata"           | "-DcompositeLibAttrValue=new-value"
            "changing external library variant metadata"           | "-DexternalLibAttrValue=new-value"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Provides a central location for handling failures encountered during
     * each stage of the variant selection process during dependency resolution.
     *
     * All variant selection failures encountered during selection by the {@link GraphVariantSelector} or
     * {@link AttributeMatchingArtifactVariantSelector}
     * should be routed through this class.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            def variant = Stub(ResolvedGraphVariant)
            variant.nodeId >> componentId
    
            def component = Stub(DependencyGraphComponent)
            _ * component.resultId >> componentId
            _ * component.selectionReason >> reason
            _ * component.resolveState >> componentState
            _ * component.selectedVariants >> [variant]
    
            def node = Stub(DependencyGraphNode)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top