Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 213 for example2 (0.14 sec)

  1. src/net/http/transport.go

    	// with a non-empty protocol name and TLSNextProto contains a
    	// map entry for that key (such as "h2"), then the func is
    	// called with the request's authority (such as "example.com"
    	// or "example.com:1234") and the TLS connection. The function
    	// must return a RoundTripper that then handles the request.
    	// If TLSNextProto is not nil, HTTP/2 support is not enabled
    	// automatically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <li>Adding a factory method. A factory method should be annotated with {@literal @}{@link Provides}, have a name that starts with 'create', and have a non-void return type.
     * For example, <code>@Provides protected SomeService createSomeService() { ....
     * }</code>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // An external variant must have exactly one outgoing edge
            // corresponding to the dependency to the external module
            // can be 0 if the selected variant also happens to be excluded
            // for example via configuration excludes
            assert outgoingEdges.size() <= 1;
            try {
                for (EdgeState outgoingEdge : outgoingEdges) {
                    //noinspection ConstantConditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_test.cc

    // 6. Create a context D using the full cluster server def E.
    // 7. Read the variable in D.
    TEST(CAPI, SingleHostServerDefV1Works) {
      // Create a server def that represents a 2-process cluster and a client.
      // Example:
      //
      // cluster { job { name: "worker"
      //                 tasks { key: 0 value: "localhost:14522" }
      //                 tasks { key: 1 value: "localhost:14523" }
      //               }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    }
    
    // reportMissingBuiltin issues an error in the case where we have a
    // relocation against a runtime builtin whose definition is not found
    // when the runtime package is built. The canonical example is
    // "runtime.racefuncenter" -- currently if you do something like
    //
    //	go build -gcflags=-race myprogram.go
    //
    // the compiler will insert calls to the builtin runtime.racefuncenter,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    	OCSPServer            []string
    	IssuingCertificateURL []string
    
    	// Subject Alternate Name values. (Note that these values may not be valid
    	// if invalid values were contained within a parsed certificate. For
    	// example, an element of DNSNames may not be a valid DNS domain name.)
    	DNSNames       []string
    	EmailAddresses []string
    	IPAddresses    []net.IP
    	URIs           []*url.URL
    
    	// Name constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    // record an argument size. For that purpose, it has no arguments.
    TEXT runtime·morestack(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/validation/validation_test.go

    		},
    	}, {
    		name: "flow-schema w/ service-account kind missing namespace should fail",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    				suitable, err := state.informationsForClaim[index].controller.nodeIsSuitable(ctx, node.Name, state.resources)
    				if err != nil {
    					// An error indicates that something wasn't configured correctly, for example
    					// writing a CEL expression which doesn't handle a map lookup error. Normally
    					// this should never fail. We could return an error here, but then the pod
    					// would get retried. Instead we ignore the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        mlir_dump_file_name_ = other.mlir_dump_file_name_;
      }
    
      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
        // the textual format (on the commandline for example).
        return "quant-quantize-composite-functions";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Quantize composite functions with QDQ input/outputs.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top