Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for sS (0.04 sec)

  1. src/crypto/tls/tls_test.go

    			}
    
    			if ss.DidResume || cs.DidResume {
    				t.Errorf("Got DidResume %v (server) and %v (client), expected false", ss.DidResume, cs.DidResume)
    			}
    
    			if ss.CipherSuite == 0 || cs.CipherSuite == 0 {
    				t.Errorf("Got invalid cipher suite: %v (server) and %v (client)", ss.CipherSuite, cs.CipherSuite)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	// nolint: gosimple
    	re := regexp.MustCompile("/apis/networking(\\.istio\\.io)?/v1alpha3/namespaces/(?P<namespace>[^/]+)/virtual-service/(?P<name>[^/]+)")
    	ss := re.FindStringSubmatch(path)
    	if ss == nil {
    		return "", "", fmt.Errorf("not a VS path: %s", path)
    	}
    	return ss[3], ss[2], nil
    }
    
    // getIstioVirtualServicePathForSvcFromRoute returns something like "/apis/networking/v1alpha3/namespaces/default/virtual-service/reviews"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    }
    
    func (ss SortableSliceOfMaps) Len() int {
    	return len(ss.s)
    }
    
    func (ss SortableSliceOfMaps) Less(i, j int) bool {
    	iStr := fmt.Sprintf("%v", ss.s[i][ss.k])
    	jStr := fmt.Sprintf("%v", ss.s[j][ss.k])
    	return sort.StringsAreSorted([]string{iStr, jStr})
    }
    
    func (ss SortableSliceOfMaps) Swap(i, j int) {
    	tmp := ss.s[i]
    	ss.s[i] = ss.s[j]
    	ss.s[j] = tmp
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    			kind:          controllerKindSS.Kind,
    			name:          ss.Name,
    			uid:           ss.UID,
    			findsScale:    true,
    			expectedScale: 14,
    		},
    		"statefulset controller with invalid kind": {
    			finderFunc: dc.getPodStatefulSet,
    			apiVersion: "apps/v1",
    			kind:       controllerKindRS.Kind,
    			name:       ss.Name,
    			uid:        ss.UID,
    			findsScale: false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    	req.Header.Add("X-Stream-Protocol-Version", clientProtocol)
    	return req
    }
    
    func TestServeExecInContainerIdleTimeout(t *testing.T) {
    	ss, err := newTestStreamingServer(100 * time.Millisecond)
    	require.NoError(t, err)
    	defer ss.testHTTPServer.Close()
    	fw := newServerTestWithDebug(true, ss)
    	defer fw.testHTTPServer.Close()
    
    	podNamespace := "other"
    	podName := "foo"
    	expectedContainerName := "baz"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    			extraOwner := (variations & 3) != 0
    			_, ctx := ktesting.NewTestContext(t)
    			logger := klog.FromContext(ctx)
    			set := apps.StatefulSet{}
    			set.Name = "ss"
    			numReplicas := int32(5)
    			set.Spec.Replicas = &numReplicas
    			set.SetUID("ss-123")
    			set.Spec.PersistentVolumeClaimRetentionPolicy = &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    				WhenScaled:  tc.scaleDownPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if schema == nil || !schemaHasDefaults(schema) {
    		return false, nil
    	}
    	ss, err := structuralschema.NewStructural(schema)
    	if err != nil {
    		return false, err
    	}
    	if errs := structuralschema.ValidateStructural(nil, ss); len(errs) > 0 {
    		return false, errs.ToAggregate()
    	}
    	pruned := ss.DeepCopy()
    	if err := structuraldefaulting.PruneDefaults(pruned); err != nil {
    		return false, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	// chance that there's more than once symbol with the same value,
    	// so as to preserve reproducible builds.
    	sl := []symWithVal{}
    	for ss := l.sub[s]; ss != 0; ss = l.sub[ss] {
    		sl = append(sl, symWithVal{s: ss, v: l.SymValue(ss)})
    	}
    	sort.Stable(bySymValue(sl))
    
    	// Then apply any changes needed to the sub map.
    	ns := Sym(0)
    	for i := len(sl) - 1; i >= 0; i-- {
    		s := sl[i].s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

      // logging utility
      template <class Container>
      string ToString(const Container& v) {
        std::stringstream ss;
        ss << "{";
        size_t i = 0;
        for (const auto& e : v) {
          if (i != 0) {
            ss << ", ";
          }
          ss << e.ToString();
          ++i;
        }
        ss << "}";
        return ss.str();
      }
    
      void VerifyFDefNodes(const tensorflow::FunctionDef& fdef,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	return have == nil || *have == expected
    }
    
    func humanReadableJoin(ss []string) string {
    	switch len(ss) {
    	case 0:
    		return ""
    	case 1:
    		return ss[0]
    	case 2:
    		return ss[0] + " and " + ss[1]
    	default:
    		return strings.Join(ss[:len(ss)-1], ", ") + ", and " + ss[len(ss)-1]
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top