Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 350 for composed (0.24 sec)

  1. src/cmd/cgo/doc.go

    them as part of the Go package. Any .c, .s, .S or .sx files will be
    compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
    compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
    compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
    not be compiled separately, but, if these header files are changed,
    the package (including its non-Go source files) will be recompiled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/expr.go

    		base.Errorf("invalid operation: %v (%v cannot be compared)", n, l.Type())
    		return l, r, nil
    	}
    
    	if l.Type().IsSlice() && !ir.IsNil(l) && !ir.IsNil(r) {
    		base.Errorf("invalid operation: %v (slice can only be compared to nil)", n)
    		return l, r, nil
    	}
    
    	if l.Type().IsMap() && !ir.IsNil(l) && !ir.IsNil(r) {
    		base.Errorf("invalid operation: %v (map can only be compared to nil)", n)
    		return l, r, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                replaceVersion(text, "androidGradlePlugin", "$agpVersion")
                replaceVersion(text, "kotlin", "$kgpVersion")
    
                // See https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility
                replaceVersion(text, "androidxComposeCompiler", "1.5.8")
    
                // See https://github.com/google/ksp/tags
                replaceVersion(text, "ksp", "1.9.22-1.0.16")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	}
    	activation, optionalOldSelfActivation := s.celActivationFactory(sts, obj, oldObj)
    	for i, compiled := range s.compiledRules {
    		rule := s.uncompiledRules[i]
    		if compiled.Error != nil {
    			errs = append(errs, field.Invalid(fldPath, sts.Type, fmt.Sprintf("rule compile error: %v", compiled.Error)))
    			continue
    		}
    		if compiled.Program == nil {
    			// rule is empty
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/docker.md

    #### Docker Compose
    
    You could be deploying to a **single server** (not a cluster) with **Docker Compose**, so you wouldn't have an easy way to manage replication of containers (with Docker Compose) while preserving the shared network and **load balancing**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler.h

    namespace tensorflow {
    
    // Compiles/lowers a given Tensorflow graph/function/cluster into a compiled XLA
    // compilation (HLO) using the XlaCompiler and compiles the resulting
    // XlaCompilationResult into an `ExecutableType` (eg. xla::LocalExecutable) by
    // calling `ClientType` (eg. xla::LocalClient).
    //
    // Caches the compiled XlaCompilationResult and Executable using a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeMap.java

              @Override
              public boolean removeAll(Collection<?> c) {
                return removeEntryIf(compose(in(c), Maps.<V>valueFunction()));
              }
    
              @Override
              public boolean retainAll(Collection<?> c) {
                return removeEntryIf(compose(not(in(c)), Maps.<V>valueFunction()));
              }
            };
          }
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    							},
    						},
    					},
    				},
    			},
    			errors: []validationMatch{
    				duplicate("root", "array[2]"),
    				duplicate("root", "array[3][1]"),
    			},
    		},
    
    		{name: "set list with compound map items",
    			obj: map[string]interface{}{
    				"strings":             []interface{}{"a", "b", "a"},
    				"integers":            []interface{}{int64(1), int64(2), int64(1)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * <p>
         * The source path indicates the location of source files that <i>may</i> be compiled if necessary.
         * It is effectively a complement to the class path, where the classes to be compiled against are in source form.
         * It does <b>not</b> indicate the actual primary source being compiled.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top