Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for Xadd (0.07 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | _             | ["0"]         | "add to non-empty convention, then append missing"| { it.add("1") ; it.append(notDefined()) }
            null        | _             | ["0"]         | "append to non-empty conventio, then add missing" | { it.append("1") ; it.add(notDefined()) }
            ["1"]       | _             | _             | "add, then add missing, then append"              | { it.add("0") ; it.add(notDefined()) ; it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    func update(t *testing.T, store cache.Store, obj interface{}) {
    	if err := store.Update(obj); err != nil {
    		t.Fatalf("Could not add %+v to %+v: %v", obj, store, err)
    	}
    }
    
    func add(t *testing.T, store cache.Store, obj interface{}) {
    	if err := store.Add(obj); err != nil {
    		t.Fatalf("Could not add %+v to %+v: %v", obj, store, err)
    	}
    }
    
    // Create one with no selector.  Verify it matches all pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    			expectedUsedPVCSet: sets.New[string](),
    		},
    		{
    			name: "Add node, remove it, add it again",
    			operations: []operation{
    				addNode(1), updateSnapshot(), removeNode(1), addNode(1),
    			},
    			expected:           []*v1.Node{nodes[1]},
    			expectedUsedPVCSet: sets.New[string](),
    		},
    		{
    			name: "Add node and remove it in the same cycle, add it again",
    			operations: []operation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                public void add(Class<?> serviceType) {
                    ownServices.add(new ConstructorService(DefaultServiceRegistry.this, serviceType));
                }
    
                @Override
                public void add(Class<?> serviceType, Class<?> implementationType) {
                    ownServices.add(new ConstructorService(DefaultServiceRegistry.this, serviceType, implementationType));
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      ops::Switch switch_b(root.WithOpName("switch_b"), value, cond_b);
    
      Output add_a = ops::Add(root.WithOpName("add_a"), switch_a.output_true,
                              switch_b.output_true);
      Output add_b = ops::Add(root.WithOpName("add_b"), switch_a.output_true,
                              switch_b.output_true);
      Output add = ops::Add(root.WithOpName("add_c"), add_a, add_b);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // combine add/shift into LEAQ/LEAL
    (ADD(L|Q) x (SHL(L|Q)const [3] y)) => (LEA(L|Q)8 x y)
    (ADD(L|Q) x (SHL(L|Q)const [2] y)) => (LEA(L|Q)4 x y)
    (ADD(L|Q) x (SHL(L|Q)const [1] y)) => (LEA(L|Q)2 x y)
    (ADD(L|Q) x (ADD(L|Q) y y))        => (LEA(L|Q)2 x y)
    (ADD(L|Q) x (ADD(L|Q) x y))        => (LEA(L|Q)2 y x)
    
    // combine ADDQ/ADDQconst into LEAQ1/LEAL1
    (ADD(Q|L)const [c] (ADD(Q|L) x y)) => (LEA(Q|L)1 [c] x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	var S390Xops = []opData{
    		// fp ops
    		{name: "FADDS", argLength: 2, reg: fp21clobber, typ: "(Float32,Flags)", asm: "FADDS", commutative: true, resultInArg0: true}, // fp32 arg0 + arg1
    		{name: "FADD", argLength: 2, reg: fp21clobber, typ: "(Float64,Flags)", asm: "FADD", commutative: true, resultInArg0: true},   // fp64 arg0 + arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            dependencyEdge.computeSelector(); // the selector changes, if the 'versionProvidedByAncestors' state changes
            outgoingEdges.add(dependencyEdge);
            dependencyEdge.markUsed();
            discoveredEdges.add(dependencyEdge);
            dependencyEdge.getSelector().use(deferSelection);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Lowering arithmetic
    (Add(64|Ptr) ...) => (ADD ...)
    (Add(32|16|8) ...) => (ADDW ...)
    (Add32F x y) => (Select0 (FADDS x y))
    (Add64F x y) => (Select0 (FADD x y))
    
    (Sub(64|Ptr) ...) => (SUB ...)
    (Sub(32|16|8) ...) => (SUBW ...)
    (Sub32F x y) => (Select0 (FSUBS x y))
    (Sub64F x y) => (Select0 (FSUB x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                operations.add(InternalBuildProgressListener.TEST_OUTPUT);
            }
            if (!fileDownloadListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.FILE_DOWNLOAD);
            }
            if (!buildPhaseListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.BUILD_PHASE);
            }
            if (!problemListeners.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top