Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for predates (0.13 sec)

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

            }
            throw new IllegalArgumentException(String.format("Service registry %s cannot be used as a parent for another service registry.", serviceRegistry));
        }
    
        /**
         * Creates a service registry that uses the given providers.
         */
        public static ServiceRegistry create(ServiceRegistrationProvider... providers) {
            DefaultServiceRegistry registry = new DefaultServiceRegistry();
    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/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            } else {
                // The isEmpty check is not required, might look innocent, but Guava's performance bad for an empty immutable list
                // because it still creates an inner class for an iterator, which delegates to an Array iterator, which does... nothing.
                // so just adding this check has a significant impact because most components do not declare any capability
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // Instead of defining a Delta that holds an original, a patch and a set of preconditions,
    // the reconcile method accepts a set of preconditions as an argument.
    
    // CreateTwoWayMergePatch creates a patch that can be passed to StrategicMergePatch from an original
    // document and a modified document, which are passed to the method as json encoded content. It will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    	conf         = printer.Config{Mode: printer.SourcePos, Tabwidth: 8}
    	noSourceConf = printer.Config{Tabwidth: 8}
    )
    
    // writeDefs creates output files to be compiled by gc and gcc.
    func (p *Package) writeDefs() {
    	var fgo2, fc io.Writer
    	f := creat(*objDir + "_cgo_gotypes.go")
    	defer f.Close()
    	fgo2 = f
    	if *gccgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            ])
    
            executePlannedStepOps.each {
                checkExecuteTransformWorkOperations(it, 1)
            }
        }
    
        def "single transform used by multiple consumers creates a node per consumer"() {
            createDirs("producer", "consumer1", "consumer2")
            settingsFile << """
                include 'producer', 'consumer1', 'consumer2'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

      final Equivalence<Object> keyEquivalence;
    
      /** Strategy for handling entries and segments in a type-safe and efficient manner. */
      final transient InternalEntryHelper<K, V, E, S> entryHelper;
    
      /**
       * Creates a new, empty map with the specified strategy, initial capacity and concurrency level.
       */
      private MapMakerInternalMap(MapMaker builder, InternalEntryHelper<K, V, E, S> entryHelper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	if err != nil {
    		return guid, err
    	}
    	err = clsidFromString(str16, &guid)
    	if err != nil {
    		return guid, err
    	}
    	return guid, nil
    }
    
    // GenerateGUID creates a new random GUID.
    func GenerateGUID() (GUID, error) {
    	guid := GUID{}
    	err := coCreateGuid(&guid)
    	if err != nil {
    		return guid, err
    	}
    	return guid, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. .bazelrc

    # Note: Lot of the "host_" flags such as "host_cpu" and "host_crosstool_top"
    # flags seem to be actually used to specify the execution platform details. It
    # seems it is this way because these flags are old and predate the distinction
    # between host and execution platform.
    build:cross_compile_base --host_cpu=k8
    build:cross_compile_base --host_crosstool_top=//tensorflow/tools/toolchains/cross_compile/cc:cross_compile_toolchain_suite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      final Equivalence<Object> keyEquivalence;
    
      /** Strategy for handling entries and segments in a type-safe and efficient manner. */
      final transient InternalEntryHelper<K, V, E, S> entryHelper;
    
      /**
       * Creates a new, empty map with the specified strategy, initial capacity and concurrency level.
       */
      private MapMakerInternalMap(MapMaker builder, InternalEntryHelper<K, V, E, S> entryHelper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				XValidations: apiextensions.ValidationRules{
    					{
    						Rule: rule,
    					},
    				},
    			},
    		}
    	}
    }
    
    // genEnumWithRuleAndValues creates a function that accepts an optional maxLength
    // with given validation rule and a set of enum values, following the convention of existing tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top