Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 677 for assignments (0.21 sec)

  1. src/cmd/compile/internal/ssa/sparsetree.go

    	return s.exit
    }
    
    const (
    	// When used to lookup up definitions in a sparse tree,
    	// these adjustments to a block's entry (+adjust) and
    	// exit (-adjust) numbers allow a distinction to be made
    	// between assignments (typically branch-dependent
    	// conditionals) occurring "before" the block (e.g., as inputs
    	// to the block and its phi functions), "within" the block,
    	// and "after" the block.
    	AdjustBefore = -1 // defined before phi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    		if err != nil {
    			if err != io.EOF {
    				return err
    			}
    			if input == "" {
    				return nil
    			}
    		}
    
    		for _, input := range shortcuts.expand(input) {
    			// Process assignments of the form variable=value
    			if s := strings.SplitN(input, "=", 2); len(s) > 0 {
    				name := strings.TrimSpace(s[0])
    				var value string
    				if len(s) == 2 {
    					value = s[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. src/sort/gen_sort_variants.go

    // The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
    // The algorithm needs O((M+N)*log(M)) calls to data.Swap.
    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// This field follows standard Kubernetes label syntax.
    	// Un-prefixed names are reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	// Non-standard protocols should use prefixed names such as
    	// mycompany.com/my-custom-protocol.
    	// +optional
    	AppProtocol *string `json:"appProtocol,omitempty" protobuf:"bytes,4,name=appProtocol"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    richer behavior for protocols that they understand. This field follows standard Kubernetes label syntax. Valid values are either:\n\n* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https://www.iana.org/assignments/service-names).\n\n* Kubernetes-defined prefixed names:\n  * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-\n  * 'kubernetes.io/ws'  - WebSocket...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/types.go

    	// This field follows standard Kubernetes label syntax.
    	// Valid values are either:
    	//
    	// * Un-prefixed protocol names - reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    	//   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/runtime/mcache.go

    }
    
    // A gclink is a node in a linked list of blocks, like mlink,
    // but it is opaque to the garbage collector.
    // The GC does not trace the pointers during collection,
    // and the compiler does not emit write barriers for assignments
    // of gclinkptr values. Code should store references to gclinks
    // as gclinkptr, not as *gclink.
    type gclink struct {
    	next gclinkptr
    }
    
    // A gclinkptr is a pointer to a gclink, but it is opaque
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    getTestClass(); public void evaluate() throws Throwable; protected void runWithAssignment(internal.Assignments) throws Throwable; protected void runWithIncompleteAss(internal.Assignments) throws Throwable; protected void runWithCompleteAssig(internal.Assignments) throws Throwable; private org.junit.runners.model.Statement methodCompletesWithP(org.junit.runners.model.FrameworkMethod, internal.Assignments, Object); protected void handleAssumptionViol(org.junit.internal.AssumptionViolatedEx); protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

      }
      func.return %graph : tensor<32xf32>
    }
    
    // -----
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    // Tesets that the pass reports error on conflicting assignments from multiple
    // callers.
    
    func.func @error_on_conflict_multiple_callers(
      %arg0: !tf_res {tf.device = "/TPU:0"},
      %arg1: tensor<i1>) {
      tf_executor.graph {
        %island = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

    dependencies {
        // use some lib
        implementation(project(":abc"))
    
        implementation(project(":p2"))
        testImplementation(project(":p1"))
    }
    """)
        }
    
        def "can add property assignments"() {
            given:
            builder
                .propertyAssignment("Set a property", "foo.bar", "bazar")
                .propertyAssignment(null, "cathedral", 42)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top