Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for Grappler (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    When the task runs, it creates or updates the criteria in the `gradle/gradle-daemon-jvm.properties` file.
    For more control, the task can be further configured in the build script or via command-line arguments.
    
    As with the wrapper, the generated file should be checked into version control.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            if (processed_ops.contains(op)) continue;
    
            IslandOp wrapper = op->getParentOfType<IslandOp>();
            assert(wrapper);
            wrapper.getControlInputsMutable().append(chain_src_island.getControl());
            if (ops_connected_to_fetch.contains(wrapper)) {
              chain_sink_island.getControlInputsMutable().append(
                  wrapper.getControl());
            }
            processed_ops.insert(op);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public Map<C, Map<R, V>> columnMap() {
          Function<Map<R, V>, Map<R, V>> wrapper = unmodifiableWrapper();
          return Collections.unmodifiableMap(Maps.transformValues(super.columnMap(), wrapper));
        }
    
        @Override
        @CheckForNull
        public V put(
            @ParametricNullness R rowKey,
            @ParametricNullness C columnKey,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        assertThrows(
            ParameterNotInstantiableException.class,
            () -> new ClassSanityTester().doTestEquals(SetWrapper.class));
      }
    
      private abstract static class Wrapper {
        private final Object wrapped;
    
        Wrapper(Object wrapped) {
          this.wrapped = checkNotNull(wrapped);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    vet's printf checker infers whether a function has the "printf wrapper"
    type, and it applies stricter checks to calls of such functions. In
    addition, it records which functions are printf wrappers for use by
    later analysis passes to identify other printf wrappers by induction.
    A result such as “f is a printf wrapper” that is not interesting by
    itself but serves as a stepping stone to an interesting result (such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/race_arm64.s

    	MRS_TPIDR_R0 \
    	TP_ALIGN \
    	MOVD    runtime·tls_g(SB), R11 \
    	MOVD    (R0)(R11), g
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    // Defined as ABIInternal so as to avoid introducing a wrapper,
    // which would make caller's PC ineffective.
    TEXT	runtime·raceread<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R0, R1	// addr
    	MOVD	LR, R2
    	// void __tsan_read(ThreadState *thr, void *addr, void *pc);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. pkg/kubelet/volume_host.go

    	}
    
    	return nil
    }
    
    func (kvh *kubeletVolumeHost) NewWrapperMounter(
    	volName string,
    	spec volume.Spec,
    	pod *v1.Pod,
    	opts volume.VolumeOptions) (volume.Mounter, error) {
    	// The name of wrapper volume is set to "wrapped_{wrapped_volume_name}"
    	wrapperVolumeName := "wrapped_" + volName
    	if spec.Volume != nil {
    		spec.Volume.Name = wrapperVolumeName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. .teamcity/subprojects.json

        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "wrapper-main",
        "path": "platforms/core-runtime/wrapper-main",
        "unitTests": false,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "wrapper-shared",
        "path": "platforms/core-runtime/wrapper-shared",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                    methods.add(method.getName());
                }
            }
            return methods.build();
        }
    
        private static ImmutableSet<Equivalence.Wrapper<Method>> allMethodsOf(Iterable<Class<?>> classes) {
            ImmutableSet.Builder<Equivalence.Wrapper<Method>> methods = ImmutableSet.builder();
            for (Class<?> clazz : classes) {
                for (Method method : clazz.getMethods()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       (Template Engines) for details.
    #
    #       (An example invocation of this template is from
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java
    #       within the Gradle project, which builds "gradlew".)
    # */ %>
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top