Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for populator (0.25 sec)

  1. cmd/metrics-v2.go

    	dependGlobalLockServer          bool
    	dependGlobalIsDistErasure       bool
    	dependGlobalBackgroundHealState bool
    	dependBucketTargetSys           bool
    }
    
    // RegisterRead register the metrics populator function to be used
    // to populate new values upon cache invalidation.
    func (g *MetricsGroupV2) RegisterRead(read func(context.Context) []MetricV2) {
    	g.metricsCache = cachevalue.NewFromFunc(g.cacheInterval,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    		Before []v1.NodeAddress
    		After  []v1.NodeAddress
    	}{
    		{
    			Name:   "nil to populated",
    			Before: nil,
    			After: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "127.0.0.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    			Name:   "empty to populated",
    			Before: []v1.NodeAddress{},
    			After: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// to CloseNotifier callers. It is usually of type *net.TCPConn or
    	// *tls.Conn.
    	rwc net.Conn
    
    	// remoteAddr is rwc.RemoteAddr().String(). It is not populated synchronously
    	// inside the Listener's Accept goroutine, as some implementations block.
    	// It is populated immediately inside the (*conn).serve goroutine.
    	// This is the value of a Handler's (*Request).RemoteAddr.
    	remoteAddr string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

      }
    
      // Populate return_nodes
      DCHECK(tf_results->return_nodes.empty());
      tf_results->return_nodes.resize(results.return_nodes.size());
      for (int i = 0; i < results.return_nodes.size(); ++i) {
        tf_results->return_nodes[i] = ToOperation(results.return_nodes[i]);
      }
    
      // Populate missing unused map keys
      DCHECK(tf_results->missing_unused_key_names.empty());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // A list of subgraphs in the model
      std::vector<BufferOffset<tflite::SubGraph>> subgraphs_;
    
      // Will be populated by ExtractControlEdges to contain the control
      // dependencies contained in the ControlNodeOps. Will then be used to populate
      // metadata in the exported flatbuffer file.
      tflite::ModelControlDependencies model_control_dependencies_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    		// host entry generated for all IPs in podIPs
    		// podIPs field is populated for clusters even
    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	// BucketStats map of bucket to slice of deployment IDs with stats. This is populated only if there are
    	// mismatches or if a specific bucket's stats are requested
    	BucketStats map[string]map[string]srBucketStatsSummary
    	// PolicyStats map of policy to slice of deployment IDs with stats. This is populated only if there are
    	// mismatches or if a specific bucket's stats are requested
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK-SAME: num_cores_per_replica: 1
        func.return
      }
      func.func @empty_func() {
        func.return
      }
    }
    
    // -----
    
    // Tests argument with unranked shape. Empty shape should be populated in the
    // metadata for associated argument.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // underscore).
          if (key.empty() || key[0] != '_') continue;
          // Ignore shape inference attributes as shape information is already
          // populated in the result type.
          if (IsOutputShapesAttribute(node_attr.second, key) ||
              IsResourceOutputShapesAttribute(node_attr.second, key))
            continue;
          TF_ASSIGN_OR_RETURN(auto converted_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	AutoVCS bool
    
    	// SuppressBuildInfo is true if the caller does not need p.Stale, p.StaleReason, or p.Internal.BuildInfo
    	// to be populated on the package.
    	SuppressBuildInfo bool
    
    	// SuppressEmbedFiles is true if the caller does not need any embed files to be populated on the
    	// package.
    	SuppressEmbedFiles bool
    }
    
    // PackagesAndErrors returns the packages named by the command line arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top