Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for determinant (0.17 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

        this.maximumWeight = maximumWeight;
        return this;
      }
    
      /**
       * Specifies the weigher to use in determining the weight of entries. Entry weight is taken into
       * consideration by {@link #maximumWeight(long)} when determining which entries to evict, and use
       * of this method requires a corresponding call to {@link #maximumWeight(long)} prior to calling
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    )
    
    config_setting(
        name = "force_rtti",
        define_values = {
            "tf_force_rtti": "true",
        },
        visibility = ["//visibility:public"],
    )
    
    # Config setting for determining if we are building for Android.
    config_setting(
        name = "android",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:android"],
            [],
        ),
        values = if_oss(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		return hIP
    	}
    
    	// The scope of this function is to get the IP from Kubernetes, we do not
    	// ask Docker or minikube for an IP.
    	// See https://istio.io/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-ip-and-ports
    	return "unknown"
    }
    
    func printIngressInfo(
    	writer io.Writer,
    	matchingServices []corev1.Service,
    	podsLabels []klabels.Set,
    	kubeClient kubernetes.Interface,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		if p, ok := os.LookupEnv("DIST_UNMODIFIED_PATH"); ok {
    			// Scripts that modify $PATH and then run dist should also provide
    			// dist with an unmodified copy of $PATH via $DIST_UNMODIFIED_PATH.
    			// Use it here when determining if the user still needs to update
    			// their $PATH. See go.dev/issue/42563.
    			path = p
    		}
    		if !strings.Contains(pathsep+path+pathsep, pathsep+gorootBin+pathsep) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// generatePodSandboxConfig and generateContainerConfig, which in turn
    	// passes it to various other functions, in order to facilitate functionality
    	// that requires this value (hosts file and downward API) and avoid races determining
    	// the pod IP in cases where a container requires restart but the
    	// podIP isn't in the status manager yet. The list of podIPs is used to
    	// generate the hosts file.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    			manageJobCalled = true
    		}
    		complete := false
    		if job.Spec.Completions == nil {
    			// This type of job is complete when any pod exits with success.
    			// Each pod is capable of
    			// determining whether or not the entire Job is done.  Subsequent pods are
    			// not expected to fail, but if they do, the failure is ignored.  Once any
    			// pod succeeds, the controller waits for remaining pods to finish, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    - For >0D tensors, truthiness is determined by looking at the number of
      elements. If has zero elements, then the result is false. Otherwise the
      result is true.
    
    This matches the behavior of If and While for determining if a tensor counts
    as true/false for a branch condition.
      }];
    
      let arguments = (ins
        TF_Tensor:$input
      );
    
      let results = (outs
        I1Tensor:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    // kernels present in that library.
    //
    // Pass "library_filename" to a platform-specific mechanism for dynamically
    // loading a library. The rules for determining the exact location of the
    // library are platform-specific and are not documented here.
    //
    // On success, place OK in status and return the newly created library handle.
    // The caller owns the library handle.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    					// This is the legacy event thrown by manage pod loop all other events are now dispatched
    					// from syncPodFn
    					p.recorder.Eventf(update.Options.Pod, v1.EventTypeWarning, events.FailedSync, "error determining status: %v", err)
    					return err
    				}
    			}
    
    			// Take the appropriate action (illegal phases are prevented by UpdatePod)
    			switch {
    			case update.WorkType == TerminatedPod:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle will now ignore directories for both the `@SkipWhenEmpty` check and for determining changes consistently.
    Until Gradle 8.0, Gradle will detect if an input file collection annotated with `@SkipWhenEmpty` consists only of file trees and then ignore directories automatically.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top