Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for regular (0.19 sec)

  1. cmd/iam-object-store.go

    	setDefaultCannedPolicies(cache.iamPolicyDocsMap)
    
    	if iamOS.usersSysType == MinIOUsersSysType {
    		bootstrapTraceMsg("loading regular IAM users")
    		regUsersList := listedConfigItems[usersListKey]
    		for _, item := range regUsersList {
    			userName := path.Dir(item)
    			if err := iamOS.loadUser(ctx, userName, regUser, cache.iamUsersMap); err != nil && err != errNoSuchUser {
    				return fmt.Errorf("unable to load the user `%s`: %w", userName, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                    <div class="collapse" id="merge-release-${changeId}">
                      <div class="well">
                          Merging `release` back to `master` is a regular operation you’re free to do, at any time. Usually, you will see conflicts in `notes.md` or `accepted-public-api-changes.json`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver.go

    			case *syntax.FuncDecl:
    				name := s.Name.Value
    				obj := NewFunc(s.Name.Pos(), pkg, name, nil)
    				hasTParamError := false // avoid duplicate type parameter errors
    				if s.Recv == nil {
    					// regular function
    					if name == "init" || name == "main" && pkg.name == "main" {
    						code := InvalidInitDecl
    						if name == "main" {
    							code = InvalidMainDecl
    						}
    						if len(s.TParamList) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    				obj := NewFunc(d.decl.Name.Pos(), pkg, name, nil) // signature set later
    				hasTParamError := false                           // avoid duplicate type parameter errors
    				if d.decl.Recv.NumFields() == 0 {
    					// regular function
    					if d.decl.Recv != nil {
    						check.error(d.decl.Recv, BadRecv, "method has no receiver")
    						// treat as function
    					}
    					if name == "init" || (name == "main" && check.pkg.name == "main") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    }
    
    // hostNamesForNamespacedName returns all possible hostnames for the given service name.
    // If Kubernetes Multi-Cluster Services (MCS) is enabled, this will contain the regular
    // hostname as well as the MCS hostname (clusterset.local). Otherwise, only the regular
    // hostname will be returned.
    func (c *Controller) hostNamesForNamespacedName(name types.NamespacedName) []host.Name {
    	if features.EnableMCSHost {
    		return []host.Name{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime_test.go

    				if !isExistingSocket("unix://" + theSocket) {
    					t.Fatalf("isExistingSocket(%q) gave unexpected result. Should have been true, instead of false", theSocket)
    				}
    			},
    		},
    		{
    			name: "Regular file is not a domain socket",
    			proc: func(t *testing.T) {
    				tmpFile, err := os.CreateTemp("", tempPrefix)
    				if err != nil {
    					t.Fatalf("unexpected error by TempFile: %v", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                    @TaskAction action() {
                        fs.delete {
                            delete(missingFile)
                            delete(missingDir)
                        }
                        regularFile.text = "regular file"
                        new File(singleFileInDir, "file.txt").text = "single file in dir"
                        new File(manyFilesInDir, "file-1.txt").text = "file #1 in dir"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/authentication.go

    				if mode == v1beta1.PeerAuthentication_MutualTLS_UNSET {
    					policy.globalMutualTLSMode = MTLSPermissive
    				} else {
    					policy.globalMutualTLSMode = ConvertToMutualTLSMode(mode)
    				}
    			} else {
    				// For regular namespace, just add to the intermediate map.
    				foundNamespaceMTLS[config.Namespace] = mode
    			}
    		}
    
    		// Add the config to the map by namespace for future look up. This is done after namespace/mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

            private ArtifactVerificationOperation.ArtifactKind determineArtifactKind(ComponentArtifactMetadata artifact) {
                ArtifactVerificationOperation.ArtifactKind artifactKind = ArtifactVerificationOperation.ArtifactKind.REGULAR;
                if (artifact instanceof ModuleDescriptorArtifactMetadata) {
                    artifactKind = ArtifactVerificationOperation.ArtifactKind.METADATA;
                }
                return artifactKind;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    	}
    
    	// This is in addition to the regular syncNodeStatus logic so we can get the container runtime status earlier.
    	// This function itself has a mutex and it doesn't recursively call fastNodeStatusUpdate or syncNodeStatus.
    	kl.updateRuntimeUp()
    
    	node, changed := kl.updateNode(ctx, originalNode)
    
    	if !changed {
    		// We don't do markVolumesFromNode(node) here and leave it to the regular syncNodeStatus().
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top