Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for splitLine (0.31 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	// send it into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		namespace, name, err := cache.SplitMetaNamespaceKey(key)
    		if err != nil {
    			t.Errorf("Error splitting key: %v", err)
    		}
    		rsSpec, err := manager.rsLister.ReplicaSets(namespace).Get(name)
    		if err != nil {
    			t.Errorf("Expected to find replica set under key %v: %v", key, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. configure.py

            ask_cuda_compute_capabilities, default_cuda_compute_capabilities)
        # Check whether all capabilities from the input is valid
        all_valid = True
        # Remove all whitespace characters before splitting the string
        # that users may insert by accident, as this will result in error
        tf_cuda_compute_capabilities = ''.join(tf_cuda_compute_capabilities.split())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	if c.closeNotifySent {
    		return 0, errShutdown
    	}
    
    	// TLS 1.0 is susceptible to a chosen-plaintext
    	// attack when using block mode ciphers due to predictable IVs.
    	// This can be prevented by splitting each Application Data
    	// record into two records, effectively randomizing the IV.
    	//
    	// https://www.openssl.org/~bodo/tls-cbc.txt
    	// https://bugzilla.mozilla.org/show_bug.cgi?id=665814
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/time/time.go

    // These methods return float64 because the dominant
    // use case is for printing a floating point number like 1.5s, and
    // a truncation to integer would make them not useful in those cases.
    // Splitting the integer and fraction ourselves guarantees that
    // converting the returned float64 to an integer rounds the same
    // way that a pure integer conversion would have, even in cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"groupVersion": "groupVersion specifies the API group and version in the form \"group/version\"",
    	"version":      "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
    }
    
    func (GroupVersionForDiscovery) SwaggerDoc() map[string]string {
    	return map_GroupVersionForDiscovery
    }
    
    var map_LabelSelector = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string groupVersion = 1;
    
      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    // GroupVersionKind unambiguously identifies a kind.  It doesn't anonymously include GroupVersion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string groupVersion = 1;
    
      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    // GroupVersionKind unambiguously identifies a kind.  It doesn't anonymously include GroupVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		[]int32{80}, map[string]string{constants.GatewayNameLabel: "waypoint-ns"}, "10.0.0.2")
    	s.assertUnorderedEvent(t, s.podXdsName("waypoint-ns-pod"), s.svcXdsName("waypoint-ns"))
    }
    
    // TODO(nmittler): Consider splitting this into multiple, smaller tests.
    func TestAmbientIndex_Policy(t *testing.T) {
    	s := newAmbientTestServer(t, testC, testNW)
    	setupPolicyTest(t, s)
    
    	selectorPolicyName := "selector"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    }
    
    // DeleteObjects deletes objects/versions in bulk, this function will still automatically split objects list
    // into smaller bulks if some object names are found to be duplicated in the delete list, splitting
    // into smaller bulks will avoid holding twice the write lock of the duplicated object names.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top