Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for Tinput (0.13 sec)

  1. pkg/config/validation/validation_test.go

    	cases := []struct {
    		input    string
    		expected error
    	}{
    		{
    			input:    "foo",
    			expected: nil,
    		},
    		{
    			input:    "%HOSTNAME%",
    			expected: nil,
    		},
    		{
    			input:    "100%%",
    			expected: nil,
    		},
    		{
    			input:    "prefix %HOSTNAME% suffix",
    			expected: nil,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		// Either already satisfied or worker count changed while we waited for the lock.
    		return
    	}
    	for len(p.workers) < n {
    		input := make(chan ReplicationWorkerOperation, 10000)
    		p.workers = append(p.workers, input)
    
    		go p.AddWorker(input, &p.activeWorkers)
    	}
    	for len(p.workers) > n {
    		worker := p.workers[len(p.workers)-1]
    		p.workers = p.workers[:len(p.workers)-1]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			// Ignore error; different assembler versions
    			// are unlikely to make any difference anyhow.
    			fmt.Fprintf(h, "asm %q\n", id)
    		}
    	}
    
    	// Input files.
    	inputFiles := str.StringList(
    		p.GoFiles,
    		p.CgoFiles,
    		p.CFiles,
    		p.CXXFiles,
    		p.FFiles,
    		p.MFiles,
    		p.HFiles,
    		p.SFiles,
    		p.SysoFiles,
    		p.SwigFiles,
    		p.SwigCXXFiles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    // 0: kubelet 65536 2147483648
    func parseGetSubIdsOutput(input string) (uint32, uint32, error) {
    	lines := strings.Split(strings.Trim(input, "\n"), "\n")
    	if len(lines) != 1 {
    		return 0, 0, fmt.Errorf("error parsing line %q: it must contain only one line", input)
    	}
    
    	parts := strings.Fields(lines[0])
    	if len(parts) != 4 {
    		return 0, 0, fmt.Errorf("invalid line %q", input)
    	}
    
    	// Parsing the numbers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
      subgraph_op_inst_map_[index] = operators_in_mlir;
      if (failed_once) return std::nullopt;
    
      // Get input and output tensor indices for the subgraph.
      std::vector<int32_t> inputs, outputs;
      for (auto arg : bb.getArguments()) {
        inputs.push_back(tensor_index_map[arg]);
      }
      for (auto result : bb.getTerminator()->getOperands()) {
        outputs.push_back(tensor_index_map[result]);
    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. src/encoding/json/testdata/code.json.gz

    ,"touches":3,"min_t":1229478785,"max_t":1238022568,"mean_t":1234568989},{"name":"file-input-direction-expected.checksum","kids":[],"cl_weight":0.005112662385616255,"touches":4,"min_t":1228781586,"max_t":1238022568,"mean_t":1233121079},{"name":"input-appearance-selection-expected.png","kids":[],"cl_weight":0.005112662385616255,"touches":4,"min_t":1228781586,"max_t":1238022568,"mean_t":1233121079},{"name":"input-table-expected.checksum","kids":[],"cl_weight":0.011100686337712065,"touches":5,"min_t...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    function main() {
    	for file in $(ls -1); do
    		dest_file=$(echo "$file" | cut -d ":" -f1)
    		mv "$file" "$dest_file"
    	done
    
    	# Read content of inspect-input.txt
    	MINIO_OPTS=$(grep "Server command line args" <./inspect-input.txt | sed "s/Server command line args: //g" | sed -r "s#%s:\/\/#\.\/#g")
    
    	# Start MinIO instance using the options
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	tests := []struct {
    		name string
    
    		input *v1.Node
    		want  bool
    	}{
    		{want: false, input: &v1.Node{Status: validNodeStatus, ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{}}}},
    		{want: false, input: &v1.Node{Status: validNodeStatus, ObjectMeta: metav1.ObjectMeta{Name: "master-abc"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy filter-forward ct state new jump cluster-ips-check
    		add chain ip kube-proxy filter-input { type filter hook input priority -110 ; }
    		add rule ip kube-proxy filter-input ct state new jump nodeport-endpoints-check
    		add rule ip kube-proxy filter-input ct state new jump service-endpoints-check
    		add chain ip kube-proxy filter-output { type filter hook output priority -110 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		"12%345": {
    			hasError: true,
    		},
    	}
    	for input, expected := range testCases {
    		value, err := parsePercentage(input)
    		if (err != nil) != expected.hasError {
    			t.Errorf("Test case: %s, expected: %v, actual: %v", input, expected.hasError, err != nil)
    		}
    		if value != expected.value {
    			t.Errorf("Test case: %s, expected: %v, actual: %v", input, expected.value, value)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top