Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 202 for Grappler (0.17 sec)

  1. src/cmd/go/internal/cache/cache.go

    // It may read file twice. The content of file must not change between the two passes.
    func (c *DiskCache) Put(id ActionID, file io.ReadSeeker) (OutputID, int64, error) {
    	wrapper, isNoVerify := file.(noVerifyReadSeeker)
    	if isNoVerify {
    		file = wrapper.ReadSeeker
    	}
    	return c.put(id, file, !isNoVerify)
    }
    
    // PutNoVerify is like Put but disables the verify check
    // when GODEBUG=goverifycache=1 is set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

      /** An implementation of {@link List#subList(int, int)}. */
      static <E extends @Nullable Object> List<E> subListImpl(
          final List<E> list, int fromIndex, int toIndex) {
        List<E> wrapper;
        if (list instanceof RandomAccess) {
          wrapper =
              new RandomAccessListWrapper<E>(list) {
                @Override
                public ListIterator<E> listIterator(int index) {
                  return backingList.listIterator(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	proxyProtocol *networking.TrafficPolicy_ProxyProtocol,
    ) {
    	if proxyProtocol == nil {
    		return
    	}
    	c := opts.mutable
    	if c.cluster.TransportSocket != nil {
    		// add an upstream proxy protocol wrapper for transportSocket
    		c.cluster.TransportSocket = &core.TransportSocket{
    			Name: "envoy.transport_sockets.upstream_proxy_protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

            SerializerClassMatcherStrategy HIERARCHY = new HierarchySerializerMatcher();
    
            boolean matches(Class<?> baseType, Class<?> candidate);
    
        }
    
        /**
         * Serializer wrapper, that allows specific instance to be created when they cannot be shared or reused.
         *
         * @param <S> The type supported by the serializer
         */
        protected interface SerializerFactory<S> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. .space/CODEOWNERS

    /libraries/maven-settings.xml "Kotlin Build Infrastructure"
    /libraries/pom.xml "Kotlin Build Infrastructure"
    /libraries/mvnw "Kotlin Build Infrastructure"
    /libraries/mvnw.cmd "Kotlin Build Infrastructure"
    /libraries/.mvn/wrapper/maven-wrapper.properties "Kotlin Build Infrastructure"
    /libraries/ReadMe.md A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Filipp.Zhinkin
    
    /license/ "Kotlin Build Infrastructure"
    
    /native/ "Kotlin Native"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  6. guava/src/com/google/common/collect/Lists.java

      /** An implementation of {@link List#subList(int, int)}. */
      static <E extends @Nullable Object> List<E> subListImpl(
          final List<E> list, int fromIndex, int toIndex) {
        List<E> wrapper;
        if (list instanceof RandomAccess) {
          wrapper =
              new RandomAccessListWrapper<E>(list) {
                @Override
                public ListIterator<E> listIterator(int index) {
                  return backingList.listIterator(index);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

    tasks.named("generateWrapperForSamples", Wrapper) {
        gradleVersion = project.version
        validateDistributionUrl = false
    }
    
    // TODO: The rich console to plain text is flaky
    tasks.named("checkAsciidoctorSampleContents") {
        enabled = false
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    import org.gradle.api.tasks.wrapper.internal.WrapperDefaults;
    import org.gradle.api.tasks.wrapper.internal.WrapperGenerator;
    import org.gradle.buildinit.InsecureProtocolOption;
    import org.gradle.buildinit.plugins.internal.BuildConverter;
    import org.gradle.buildinit.plugins.internal.BuildGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            "gradle-base-services",
            "gradle-enterprise-logging",
            "gradle-enterprise-workers",
            "gradle-cli",
            "gradle-concurrent",
            "gradle-io",
            "gradle-wrapper-shared",
            "gradle-native",
            "gradle-dependency-management",
            "gradle-workers",
            "gradle-worker-main",
            "gradle-build-process-services",
            "gradle-problems-api",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. internal/grid/types.go

    				var t T
    				return &t
    			},
    		},
    		emptySz: sz,
    	}
    }
    
    func (p *JSONPool[T]) new() *T {
    	var zero T
    	t := p.pool.Get().(*T)
    	*t = zero
    	return t
    }
    
    // JSON is a wrapper around a T object that can be serialized.
    // There is an internal value
    type JSON[T any] struct {
    	p   *JSONPool[T]
    	val *T
    }
    
    // NewJSON returns a new JSONPool.
    // No initial value is set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top