Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 350 for composed (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //                statement is compiled but not executed, to ensure that
    //                EXPECT_DEATH_IF_SUPPORTED compiles with a certain
    //                parameter iff EXPECT_DEATH compiles with it.
    //   regex     -  A regex that a macro such as EXPECT_DEATH would use to test
    //                the output of statement.  This parameter has to be
    //                compiled but not evaluated by this macro, to ensure that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                                + binding.getScope().annotationType()))
                        .get();
                compiled = scope.scope((Key<Q>) binding.getOriginalKey(), binding.getScope(), compiled);
            }
            return compiled;
        }
    
        protected void doBindImplicit(Key<?> key, Binding<?> binding) {
            if (binding != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/PredicatesTest.java

        Predicate<String> trimEqualsFoo = Predicates.compose(equalsFoo, trim);
        Function<String, String> identity = Functions.identity();
    
        assertTrue(trimEqualsFoo.apply("Foo"));
        assertTrue(trimEqualsFoo.apply("   Foo   "));
        assertFalse(trimEqualsFoo.apply("Foo-b-que"));
    
        new EqualsTester()
            .addEqualityGroup(trimEqualsFoo, Predicates.compose(equalsFoo, trim))
            .addEqualityGroup(equalsFoo)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Functions.java

       * is defined as the function h such that {@code h(a) == g(f(a))} for each {@code a}.
       *
       * <p><b>Java 8+ users:</b> use {@code g.compose(f)} or (probably clearer) {@code f.andThen(g)}
       * instead.
       *
       * @param g the second function to apply
       * @param f the first function to apply
       * @return the composition of {@code f} and {@code g}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Functions.java

       * is defined as the function h such that {@code h(a) == g(f(a))} for each {@code a}.
       *
       * <p><b>Java 8+ users:</b> use {@code g.compose(f)} or (probably clearer) {@code f.andThen(g)}
       * instead.
       *
       * @param g the second function to apply
       * @param f the first function to apply
       * @return the composition of {@code f} and {@code g}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    type CompilationResult struct {
    	Program cel.Program
    	Error   *apiservercel.Error
    	// If true, the compiled expression contains a reference to the identifier "oldSelf".
    	UsesOldSelf bool
    	// Represents the worst-case cost of the compiled expression in terms of CEL's cost units, as used by cel.EstimateCost.
    	MaxCost uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/go/types/predicates.go

    			if !comparable(f.typ, dynamic, seen, nil) {
    				if reportf != nil {
    					reportf("struct containing %s cannot be compared", f.typ)
    				}
    				return false
    			}
    		}
    		return true
    	case *Array:
    		if !comparable(t.elem, dynamic, seen, nil) {
    			if reportf != nil {
    				reportf("%s cannot be compared", t)
    			}
    			return false
    		}
    		return true
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    			if !comparable(f.typ, dynamic, seen, nil) {
    				if reportf != nil {
    					reportf("struct containing %s cannot be compared", f.typ)
    				}
    				return false
    			}
    		}
    		return true
    	case *Array:
    		if !comparable(t.elem, dynamic, seen, nil) {
    			if reportf != nil {
    				reportf("%s cannot be compared", t)
    			}
    			return false
    		}
    		return true
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen_test_h.golden

    //   temp bytes aligned: 512
    class MyClass final : public tensorflow::XlaCompiledCpuFunction {
     public:
      // Number of input arguments for the compiled computation.
      static constexpr size_t kNumArgs = 5;
    
      static constexpr size_t kNumResults = 3;
    
      // Number of variables for the compiled computation.
      static constexpr size_t kNumVariables = 3;
    
      // Byte size of each argument buffer. There are kNumArgs entries.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. operator/pkg/manifest/shared.go

    }
    
    // GenerateConfig creates an IstioOperatorSpec from the following sources, overlaid sequentially:
    // 1. Compiled in base, or optionally base from paths pointing to one or multiple ICP/IOP files at inFilenames.
    // 2. Profile overlay, if non-default overlay is selected. This also comes either from compiled in or path specified in IOP contained in inFilenames.
    // 3. User overlays stored in inFilenames.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top