Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 517 for for3 (0.08 sec)

  1. configure.py

        var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
        query_item: string for feature related to the variable, e.g. "CUDA for
          Nvidia GPUs".
        enabled_by_default: boolean for default behavior.
        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    }
    
    // errorCheck matches errors in outStr against comments in source files.
    // For each line of the source files which should generate an error,
    // there should be a comment of the form // ERROR "regexp".
    // If outStr has an error for a line which has no such comment,
    // this function will report an error.
    // Likewise if outStr does not have an error for a line which has a comment,
    // or if the error message does not match the <regexp>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    					// pkg was loaded from a root module, and because the main module has
    					// a pruned module graph we do not check non-root modules for
    					// conflicts for packages that can be found in roots. So we only need
    					// the checksums for the root modules that may contain pkg, not all
    					// possible modules.
    					for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    						if v, ok := rs.rootSelected(prefix); ok && v != "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    // registers for allocation. This affinity helps eliminate moves that
    // are required for phi implementations and helps generate allocations
    // for 2-register architectures.
    
    // Note: regalloc generates a not-quite-SSA output. If we have:
    //
    //             b1: x = ... : AX
    //                 x2 = StoreReg x
    //                 ... AX gets reused for something else ...
    //                 if ... goto b3 else b4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        int min_cluster_size;
    
        // Compiler fuel for the auto-clustering algorithm.
        //
        // We decrement this value by one on every time we choose a compilation
        // candidate and we stop clustering when it hits zero.  This means the
        // initial value for this variable (via --tf_xla_clustering_fuel=N)
        // effectively acts as a "cap" for how much we cluster and we can bisect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // for all the Istio control plane components.
    message ArchConfig {
      // Sets pod scheduling weight for amd64 arch
      uint32 amd64 = 1;
    
      // Sets pod scheduling weight for ppc64le arch.
      uint32 ppc64le = 2;
    
      // Sets pod scheduling weight for s390x arch.
      uint32 s390x = 3;
    
      // Sets pod scheduling weight for arm64 arch.
      uint32 arm64 = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				Name: "foo3", State: kubecontainer.ContainerStateRunning,
    				Hash: kubecontainer.HashContainer(&pod.Spec.Containers[2]),
    			},
    		},
    	}
    	return pod, status
    }
    
    func TestComputePodActions(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    
    	// Creating a pair reference pod and status for the test cases to refer
    	// the specific fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Header.Get("X-Forwarded-For") == "" {
    			t.Errorf("didn't get X-Forwarded-For header")
    		}
    		if !strings.Contains(r.Header.Get("X-Forwarded-For"), prevForwardedFor) {
    			t.Errorf("X-Forwarded-For didn't contain prior data")
    		}
    		w.WriteHeader(backendStatus)
    		w.Write([]byte(backendResponse))
    	}))
    	defer backend.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais2.go

    }
    
    func induceSubL_8_64(text []byte, sa, freq, bucket []int64) {
    	// Initialize positions for left side of character buckets.
    	bucketMin_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// As we scan the array left-to-right, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    	// can be up to 4, plus 8 for the hash and 4 additional punctuation characters.
    	// That's a total of 205, which is less than chainNameBaseLengthMax (240). So this
    	// will never actually return a truncated name.
    	return hashAndTruncate(name)
    }
    
    // servicePortEndpointChainNameBase returns the suffix for chain names for the given
    // endpoint. This is something like
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top