Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 92 for Keys (0.06 sec)

  1. cmd/object_api_suite_test.go

    }
    
    // Tests validate the order of result of ListBuckets.
    func testListBucketsOrder(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	// if implementation contains a map, order of map keys will vary.
    	// this ensures they return in the same order each time.
    	// add one and test exists.
    	err := obj.MakeBucket(context.Background(), "bucket1", MakeBucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    func (*Address_Service) isAddress_Type() {}
    
    // Service represents a service - a group of workloads that can be accessed together.
    // The xds primary key is "namespace/hostname".
    // Secondary (alias) keys are the unique `network/IP` pairs that the service can be reached at.
    type Service struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    }
    
    // Clean unwanted fields from metadata
    func cleanMetadata(metadata map[string]string) map[string]string {
    	// Remove STANDARD StorageClass
    	metadata = removeStandardStorageClass(metadata)
    	// Clean meta etag keys 'md5Sum', 'etag', "expires", "x-amz-tagging".
    	return cleanMetadataKeys(metadata, "md5Sum", "etag", "expires", xhttp.AmzObjectTagging, "last-modified", VersionPurgeStatusKey)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	runtime.Must(clientfeatures.AddFeaturesToExistingFeatureGates(ca))
    	clientfeatures.ReplaceFeatureGates(ca)
    }
    
    // defaultKubernetesFeatureGates consists of all known Kubernetes-specific feature keys.
    // To add a new feature, define a key for it above and add it here. The features will be
    // available throughout Kubernetes binaries.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				t.Errorf("resourceVersion in list response want=%s, got=%s", tc.expectResponseRV, out.ResourceVersion)
    			}
    		})
    	}
    }
    
    // seedMultiLevelData creates a set of keys with a multi-level structure, returning a resourceVersion
    // from before any were created along with the full set of objects that were persisted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    		c.Fatalf("Unable to list access keys: %v", err)
    	}
    
    	epochTime := time.Unix(0, 0).UTC()
    	expectedAccKeys := madmin.ListAccessKeysLDAPResp{
    		ServiceAccounts: []madmin.ServiceAccountInfo{
    			{
    				AccessKey:  "u4ccRswj62HV3Ifwima7",
    				Expiration: &epochTime,
    			},
    		},
    	}
    
    	if !reflect.DeepEqual(expectedAccKeys, res) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    that the results match existing cache entries.
    
    GODEBUG=gocachehash=1 causes the go command to print the inputs
    for all of the content hashes it uses to construct cache lookup keys.
    The output is voluminous but can be useful for debugging the cache.
    
    GODEBUG=gocachetest=1 causes the go command to print details of its
    decisions about whether to reuse a cached test result.
    `,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server.go

    			return err
    		}
    	}
    	log.Infof("done initializing workload trustBundle")
    	return nil
    }
    
    // isK8SSigning returns whether K8S (as a RA) is used to sign certs instead of private keys known by Istiod
    func (s *Server) isK8SSigning() bool {
    	return s.RA != nil && strings.HasPrefix(features.PilotCertProvider, constants.CertProviderKubernetesSignerPrefix)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	if vm == nil || len(vm.Env) == 0 {
    		return nil
    	}
    
    	keys := sets.New[string]()
    	for _, env := range vm.Env {
    		if env == nil {
    			continue
    		}
    
    		if env.Name == "" {
    			return fmt.Errorf("spec.vmConfig.env invalid")
    		}
    
    		if keys.InsertContains(env.Name) {
    			return fmt.Errorf("duplicate env")
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a regression in default configurations, which enabled PodDisruptionConditions by default, 
      that prevented the control plane's pod garbage collector from deleting pods that contained duplicated field keys (env. variables with repeated keys or container ports). ([#121380](https://github.com/kubernetes/kubernetes/pull/121380), [@mimowo](https://github.com/mimowo)) [SIG Apps, Auth, Scheduling and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top