Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for inversion (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    			jGV := metav1.GroupVersion{Group: group.Name, Version: jVersion}
    
    			iSource := sourcesUsed[iGV]
    			jSource := sourcesUsed[jGV]
    
    			iPriority := rdm.versionPriorities[groupVersionKey{iGV, iSource}].VersionPriority
    			jPriority := rdm.versionPriorities[groupVersionKey{jGV, jSource}].VersionPriority
    
    			// Sort by version string comparator if priority is equal
    			if iPriority == jPriority {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	groups := sets.String{}
    	order := []string{}
    	for _, version := range versions {
    		if len(version.Version) == 0 || version.Version == APIVersionInternal {
    			return fmt.Errorf("internal versions cannot be prioritized: %v", version)
    		}
    
    		groups.Insert(version.Group)
    		order = append(order, version.Version)
    	}
    	if len(groups) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe_test.go

    	}
    
    	server.TLS = &tls.Config{
    		Certificates: []tls.Certificate{
    			{
    				Certificate: serverCert,
    				PrivateKey:  privateKey,
    			},
    		},
    		MinVersion: tls.VersionTLS12,
    	}
    	server.StartTLS()
    	defer server.Close()
    
    	testCases := []struct {
    		name        string
    		certMap     map[string][]string
    		errContains string
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// result contains the result of conversion with extra details if the conversion failed. `result.status` determines if
    	// the conversion failed or succeeded. The `result.status` field is required and represents the success or failure of the
    	// conversion. A successful conversion must set `result.status` to `Success`. A failed conversion must set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client.go

    			p = []byte{}
    		}
    		hello.quicTransportParameters = p
    	}
    
    	var ech *echContext
    	if c.config.EncryptedClientHelloConfigList != nil {
    		if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 {
    			return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
    		}
    		if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// result contains the result of conversion with extra details if the conversion failed. `result.status` determines if
    	// the conversion failed or succeeded. The `result.status` field is required and represents the success or failure of the
    	// conversion. A successful conversion must set `result.status` to `Success`. A failed conversion must set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. pkg/wasm/convert_test.go

    					t.Errorf("wasm config conversion output index %d got %v want %v", i, ec, c.wantOutput[i])
    				}
    			}
    			if c.wantErr && gotErr == nil {
    				t.Error("wasm config conversion fails to raise an error")
    			} else if !c.wantErr && gotErr != nil {
    				t.Errorf("wasm config conversion got unexpected error: %v", gotErr)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    					},
    					PreserveUnknownFields: ptr.To(false),
    				},
    			},
    		},
    		// webhook conversion config
    		{
    			Name: "internal to v1, no webhook client config",
    			In: &apiextensions.CustomResourceDefinition{
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Conversion: &apiextensions.CustomResourceConversion{},
    				},
    			},
    			Out: &CustomResourceDefinition{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    upgrade to is denoted in the "PREFERRED VERSION" column.
    
    API GROUP                 CURRENT VERSION   PREFERRED VERSION   MANUAL UPGRADE REQUIRED
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    const minTimeForTicksPerSecond = 5_000_000*(1-osHasLowResClockInt) + 100_000_000*osHasLowResClockInt
    
    // ticksPerSecond returns a conversion rate between the cputicks clock and the nanotime clock.
    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top