Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 360 for Result (0.3 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
    
            public final Object getInstance() {
                Object result = instance;
                if (result == null) {
                    synchronized (this) {
                        result = instance;
                        if (result == null) {
                            setInstance(createServiceInstance());
                            result = instance;
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    @Override void beforeSuite(TestDescriptor suite) {}
                    @Override void afterSuite(TestDescriptor suite, TestResult result) {}
                    @Override void beforeTest(TestDescriptor testDescriptor) {}
                    @Override void afterTest(TestDescriptor testDescriptor, TestResult result) {}
                }
    
                class TestOutputAdapter implements TestOutputListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            List<ExpressionValue> result = new ArrayList<>(expressions.length);
            for (Object expression : expressions) {
                result.add(expressionValue(expression));
            }
            return result;
        }
    
        private static Map<String, ExpressionValue> expressionMap(Map<String, ?> expressions) {
            LinkedHashMap<String, ExpressionValue> result = new LinkedHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def value = BigDecimal.TEN
            def parent = Mock(ParentServices)
            def registry = new TestRegistry(registry(parent))
    
            when:
            def result = registry.get(BigDecimal)
    
            then:
            result == value
    
            and:
            1 * parent.get(BigDecimal) >> value
        }
    
        def delegatesToParentsForUnknownService() {
            def value = BigDecimal.TEN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    		ExpectXML: `<result>` +
    			`<Items>` +
    			`</Items>` +
    			`</result>`,
    	},
    	{
    		Value: &NestedItems{Items: []string{}, Item1: []string{}},
    		ExpectXML: `<result>` +
    			`<Items>` +
    			`</Items>` +
    			`</result>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &NestedItems{Items: nil, Item1: []string{"A"}},
    		ExpectXML: `<result>` +
    			`<Items>` +
    			`<item1>A</item1>` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    func convertVirtualService(r configContext) []config.Config {
    	result := []config.Config{}
    	for _, obj := range r.TCPRoute {
    		result = append(result, buildTCPVirtualService(r, obj)...)
    	}
    
    	for _, obj := range r.TLSRoute {
    		result = append(result, buildTLSVirtualService(r, obj)...)
    	}
    
    	// for gateway routes, build one VS per gateway+host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

        checkNotNull(elementsToRemove);
        boolean result = false;
        while (removeFrom.hasNext()) {
          if (elementsToRemove.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Removes every element that satisfies the provided predicate from the iterator. The iterator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

        checkNotNull(elementsToRemove);
        boolean result = false;
        while (removeFrom.hasNext()) {
          if (elementsToRemove.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Removes every element that satisfies the provided predicate from the iterator. The iterator
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    		}
    		if isComparison(x.Op) {
    			// The result type is independent of operand types
    			// and the operand types must have final types.
    		} else if isShift(x.Op) {
    			// The result type depends only on lhs operand.
    			// The rhs type was updated when checking the shift.
    			check.updateExprType0(x, x.X, typ, final)
    		} else {
    			// The operand types match the result type.
    			check.updateExprType0(x, x.X, typ, final)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		q := MustParse(testCase)
    		if result := q.DeepCopy(); result != q {
    			t.Errorf("Expected: %v, Actual: %v", q, result)
    		}
    	}
    	table := []*inf.Dec{
    		dec(0, 0).Dec,
    		dec(10, 0).Dec,
    		dec(-10, 0).Dec,
    	}
    	// Test when i is {0,0}
    	for _, testCase := range table {
    		q := Quantity{d: infDecAmount{testCase}, Format: DecimalSI}
    		result := q.DeepCopy()
    		if q.d.Cmp(result.AsDec()) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top