Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 9,318 for haxe (0.1 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
         *     <li>there might have been more or less load on the machine producing the reused work,</li>
         *     <li>the work reused might have been executed incrementally,</li>
         *     <li>had there been no work to reuse, the local execution might have happened happen incrementally.</li>
         * </ul>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

         * Input file properties.
         *
         * It is guaranteed that all the {@link InputFilePropertySpec}s have a name and that the names are unique.
         */
        ImmutableSortedSet<InputFilePropertySpec> getInputFileProperties();
    
        /**
         * Output file properties.
         *
         * It is guaranteed that all the {@link OutputFilePropertySpec}s have a name and that the names are unique.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    mounted by pods using the `clusterTrustBundle` projection.  All service accounts have read access to ClusterTrustBundles by default.  Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access to.\n\nIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer. Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //
    // "tf.OpA" will not have `_parallel_execution_ids` attr,
    //          means it does not belong to any parallel execution groups.
    // First instance of "tf.OpB" after flattening will have
    //          `_parallel_execution_ids = "r0:0"`,
    //          which represents the first branch of replicate group 0.
    // Second instance of "tf.OpB" after flattening will have
    //          `_parallel_execution_ids = "r0:1"`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/simple-oauth2.md

        But `OAuth2PasswordRequestForm` is just a class dependency that you could have written yourself, or you could have declared `Form` parameters directly.
    
        But as it's a common use case, it is provided by **FastAPI** directly, just to make it easier.
    
    ### Use the form data
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/scheduler/rate_limited_queue_test.go

    		t.Fatalf("Queue %v should have length %d", evictor.queue.queue, len(queuePattern))
    	}
    	if !CheckQueueEq(queuePattern, evictor.queue.queue) {
    		t.Errorf("Invalid queue. Got %v, expected %v", evictor.queue.queue, queuePattern)
    	}
    
    	setPattern := sets.NewString("first", "second", "third")
    	if len(evictor.queue.set) != len(setPattern) {
    		t.Fatalf("Map %v should have length %d", evictor.queue.set, len(setPattern))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 17:40:33 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

      ) attributes { tf_saved_model.exported_names = ["f"] } {
        func.return
      }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // expected-error@+1 {{all arguments should have 'tf_saved_model.index_path', 'tf_saved_model.bound_input' or 'tf.resource_name' attributes}}
      func.func @f(
        %arg0: tensor<f32>
      ) attributes { tf_saved_model.exported_names = ["f"] } {
        func.return
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    func ImplementsExplain(t, iface *types.Type) string {
    	var missing, have *types.Field
    	var ptr int
    	if implements(t, iface, &missing, &have, &ptr) {
    		return ""
    	}
    
    	if isptrto(t, types.TINTER) {
    		return fmt.Sprintf("%v is pointer to interface, not interface", t)
    	} else if have != nil && have.Sym == missing.Sym && have.Nointerface() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/go/types/assignments.go

    			s = "unknown type"
    		case isUntyped(t):
    			if isNumeric(t) {
    				// Do not imply a specific type requirement:
    				// "have number, want float64" is better than
    				// "have untyped int, want float64" or
    				// "have int, want float64".
    				s = "number"
    			} else {
    				// If we don't have a number, omit the "untyped" qualifier
    				// for compactness.
    				s = strings.Replace(t.(*Basic).name, "untyped ", "", -1)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/path/filepath/match_test.go

    	p := FromSlash(rootPattern + `\` + test.pattern)
    	have, err := Glob(p)
    	if err != nil {
    		return err
    	}
    	slices.Sort(have)
    	want := test.buildWant(root + `\`)
    	if strings.Join(want, "_") == strings.Join(have, "_") {
    		return nil
    	}
    	return fmt.Errorf("Glob(%q) returns %q, but %q expected", p, have, want)
    }
    
    func (test *globTest) globRel(root string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top