Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 378 for Usages (0.18 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      auto reshape = dot.getRhs().getDefiningOp<mhlo::ReshapeOp>();
      if (!reshape) return failure();
      if (!reshape->hasOneUse())
        return rewriter.notifyMatchFailure(reshape, "reshape has multiple usages");
      if (!reshape.getType().hasStaticShape() ||
          !reshape.getOperand().getType().hasStaticShape() ||
          !dot.getLhs().getType().hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                contextualLabel == 'Problem: In version catalog testLibs, you can only call the \'from\' method a single time.'
                details == 'The method was called more than once'
                solutions == [ 'Remove further usages of the method call' ]
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20060")
        def "no name conflicting of accessors"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Suggestions for authoring your build
    
    [[custom_actions]]
    === Review usages of `doFirst` and `doLast`
    
    Using `doFirst` and `doLast` from a build script on a cacheable task ties you to build script changes since the implementation of the closure comes from the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	ImageRepository string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    // vary and the usage could be incoherent (e.g., spiky). If no caller calls
    // this function, the cpu usage will stay nil. Right now, eviction manager is
    // the only caller, and it calls this function every 10s.
    func (p *criStatsProvider) ListPodStatsAndUpdateCPUNanoCoreUsage(ctx context.Context) ([]statsapi.PodStats, error) {
    	// Update CPU nano core usage.
    	return p.listPodStats(ctx, true)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. hack/lib/util.sh

        echo '{"signing":{"default":{"expiry":"43800h","usages":["signing","key encipherment",${purpose}]}}}' > "${dest_dir}/${id}-ca-config.json"
    EOF
    }
    
    # signs a client certificate: args are sudo, dest-dir, CA, filename (roughly), username, groups...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// ImageRepository sets the container registry to pull images from.
    	// If empty, `registry.k8s.io` will be used by default; in case of kubernetes version is a CI build (kubernetes version starts with `ci/`)
    	// `gcr.io/k8s-staging-ci-images` will be used as a default for control plane components and for kube-proxy, while `registry.k8s.io`
    	// will be used for all the other images.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    type inboundChainConfig struct {
    	// clusterName defines the destination cluster for this chain
    	clusterName string
    	// port defines the port configuration for this chain. Note that there is a Port and TargetPort;
    	// most usages should just use TargetPort. Port is mostly used for legacy compatibility and
    	// telemetry.
    	port model.ServiceInstancePort
    	// bind determines where (IP) this filter chain should bind. Note: typically we just end up using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Streams.java

       * between elements will be made, but the order in which those pairs of elements are passed to the
       * consumer is <i>not</i> defined.
       *
       * <p>Note that many usages of this method can be replaced with simpler calls to {@link #zip}.
       * This method behaves equivalently to {@linkplain #zip zipping} the stream elements into
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		u        []string
    		f        *field.Path
    		expected bool
    	}{
    		{[]string{}, nil, true},                            // supported (no usages)
    		{[]string{"signing", "authentication"}, nil, true}, // supported
    		{[]string{"something else"}, nil, false},           // usage not supported
    	}
    	for _, rt := range tests {
    		actual := ValidateTokenUsages(rt.u, rt.f)
    		if (len(actual) == 0) != rt.expected {
    			t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top