Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for greatest (0.2 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

          return;
        }
        for (Predicate* op : current->GetOperands()) {
          if (visited.insert(op).second) {
            stack.push_back(op);
          }
        }
      }
    }
    
    // Creates and owns Predicate instances.  Simplifies predicates as it creates
    // them.
    class PredicateFactory {
     public:
      Predicate* MakeAndPredicate(absl::Span<Predicate* const> operands) {
        return MakeAndOrImpl(operands, /*is_and=*/true);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    // SetupDiCreateDeviceInfoListEx function creates an empty device information set on a remote or a local computer and optionally associates the set with a device setup class.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Gradle will use the information about what files a task destroys (e.g. specified by the `Destroys` annotation) and avoid running a task that removes a set of files while another task is running that consumes or creates those same files (and vice versa).  It can also determine that a task that creates a set of files has already run and that a task that consumes those files has yet to run and will avoid running a task that removes those files in between.  By providing task input and output information in...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    		UnmarshalOnly: true,
    	},
    
    	// Test escaping.
    	{
    		ExpectXML: `<a><nested><value>dquote: &#34;; squote: &#39;; ampersand: &amp;; less: &lt;; greater: &gt;;</value></nested><empty></empty></a>`,
    		Value: &AnyTest{
    			Nested:   `dquote: "; squote: '; ampersand: &; less: <; greater: >;`,
    			AnyField: AnyHolder{XMLName: Name{Local: "empty"}},
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[VAL10:.*]] = "tf.Floor"(%[[VAL9]]) : (tensor<f32>) -> tensor<f32>
      // CHECK-DAG: %[[VAL11:.*]] = "tf.Sub"(%[[VAL9]], %[[VAL10]]) : (tensor<f32>, tensor<f32>) -> tensor<f32>
      // CHECK-DAG: %[[VAL12:.*]] = "tf.Greater"(%[[VAL11]], %[[VAL4]]) : (tensor<f32>, tensor<f32>) -> tensor<i1>
      // CHECK-DAG: %[[VAL13:.*]] = "tf.Equal"(%[[VAL11]], %[[VAL4]]) <{incompatible_shape_error = true}> : (tensor<f32>, tensor<f32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis_test.cc

        ::tensorflow::protobuf::TextFormat::PrintToString(graph_def, &serialized);
        LOG(INFO) << serialized;
      }
    }
    
    struct InductionVarInfo {
      Output induction_var;
      Output loop_cond;
    };
    
    // Creates an induction variable with the following structure (simplified for
    // brevity):
    //
    //            +---------------+
    //            | initial_value |
    //            +---------------+
    //              |
    //              |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			if event.Type == watch.Bookmark {
    				bookmarkReceived = true
    				// bookmark event has a RV greater than or equal to the before one
    				if rv < lastObservedResourceVersion {
    					t.Fatalf("Unexpected bookmark resourceVersion %v less than observed %v)", rv, lastObservedResourceVersion)
    				}
    			} else {
    				// non-bookmark event has a RV greater than anything before
    				if rv <= lastObservedResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    	res := api.VolumeResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    // createLimitRange creates a limit range with the specified data
    func createLimitRange(limitType api.LimitType, min, max, defaultLimit, defaultRequest, maxLimitRequestRatio api.ResourceList) corev1.LimitRange {
    	internalLimitRage := api.LimitRange{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/proxy/iptables/proxier.go

    	isIPv6 := proxier.iptables.IsIPv6()
    	if !isIPv6 && proxier.localhostNodePorts {
    		// Kube-proxy's use of `route_localnet` to enable NodePorts on localhost
    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates.
    
    		// NOTE: kubelet creates an identical copy of this rule. If you want to
    		// change this rule in the future, you MUST do so in a way that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top