Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for NEW (0.17 sec)

  1. pkg/config/validation/validation.go

    			v = AppendWarningf(v, "TLS version below TLSV1_2 require setting compatible ciphers as by default they no longer include compatible ciphers.")
    		}
    	}
    
    	invalidCiphers := sets.New[string]()
    	validCiphers := sets.New[string]()
    	duplicateCiphers := sets.New[string]()
    	for _, cs := range tls.CipherSuites {
    		if !security.IsValidCipherSuite(cs) {
    			invalidCiphers.Insert(cs)
    		} else if validCiphers.InsertContains(cs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				util.GetPodFullName(pods[1]): {PodInfo: mustNewTestPodInfo(t, pods[1]), UnschedulablePlugins: sets.New[string]()},
    				util.GetPodFullName(pods[2]): {PodInfo: mustNewTestPodInfo(t, pods[2]), UnschedulablePlugins: sets.New[string]()},
    				util.GetPodFullName(pods[3]): {PodInfo: mustNewTestPodInfo(t, pods[3]), UnschedulablePlugins: sets.New[string]()},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    			MaxConnections: 1,
    			ConnectTimeout: durationpb.New(2 * time.Second),
    			TcpKeepalive: &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    				Probes:   3,
    				Time:     durationpb.New(4 * time.Second),
    				Interval: durationpb.New(5 * time.Second),
    			},
    			MaxConnectionDuration: durationpb.New(6 * time.Second),
    		},
    	}
    
    	overrideSettings := &networking.ConnectionPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    		byteData []byte
    		md5sum   string
    	}{
    		{byteData: generateBytesData(6 * humanize.KiByte)},
    	}
    	h := md5.New()
    	h.Write(bytesData[0].byteData)
    	bytesData[0].md5sum = hex.EncodeToString(h.Sum(nil))
    
    	buffers := []*bytes.Buffer{
    		new(bytes.Buffer),
    		new(bytes.Buffer),
    	}
    	bucketInfo, err := obj.GetBucketInfo(context.Background(), bucketName, BucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	go doc template.new
    //		Show documentation for html/template's New function.
    //		(html/template is lexically before text/template)
    //	go doc text/template.new # One argument
    //		Show documentation for text/template's New function.
    //	go doc text/template new # Two arguments
    //		Show documentation for text/template's New function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    }
    
    // allocateNamedSectionAndAssignSyms creates a new section with the
    // specified name, then walks through the bucketed data symbols with
    // type 'symn' and assigns each of them to this new section. "Seg" is
    // the segment into which to place the new section, "secName" is the
    // name to give to the new section, "forceType" (if non-zero) contains
    // a new sym type to apply to each sym during the assignment, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			expectedReady:      ptr.To[int32](0),
    		},
    		"new failed pod": {
    			parallelism:        2,
    			completions:        5,
    			backoffLimit:       6,
    			activePods:         1,
    			failedPods:         1,
    			expectedCreations:  1,
    			expectedActive:     2,
    			expectedFailed:     1,
    			expectedPodPatches: 1,
    			expectedReady:      ptr.To[int32](0),
    		},
    		"no new pod; possible finalizer update of failed pod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	defer testKubelet.Cleanup()
    
    	fakePod := &kubecontainer.Pod{
    		ID:        "1",
    		Name:      "foo",
    		Namespace: "new",
    		Containers: []*kubecontainer.Container{
    			{Name: "bar"},
    		},
    	}
    
    	pods := []*v1.Pod{
    		podWithUIDNameNs("1", "foo", "new"),
    	}
    
    	fakeRuntime := testKubelet.fakeRuntime
    	fakeRuntime.PodList = []*containertest.FakePod{
    		{Pod: fakePod},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		p.Stale = true
    		p.StaleReason = "binary-only packages are no longer supported"
    		if b.IsCmdList {
    			return nil
    		}
    		return errors.New("binary-only packages are no longer supported")
    	}
    
    	if p.Module != nil && !allowedVersion(p.Module.GoVersion) {
    		return errors.New("module requires Go " + p.Module.GoVersion + " or later")
    	}
    
    	if err := b.checkDirectives(a); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "old".
      if [[ "${LOGGING_STACKDRIVER_RESOURCE_TYPES:-old}" == "new" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top