Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 143 for mainIvy (0.13 sec)

  1. src/cmd/go/internal/modcmd/download.go

    module if it is at 'go 1.17' or higher, or all transitively-required modules
    if at 'go 1.16' or lower.
    
    The go command will automatically download modules as needed during ordinary
    execution. The "go mod download" command is useful mainly for pre-filling
    the local cache or to compute the answers for a Go module proxy.
    
    By default, download writes nothing to standard output. It may print progress
    messages and errors to standard error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    type JSON interface{}
    
    // JSONSchemaURL represents a schema url.
    type JSONSchemaURL string
    
    // JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps
    // or an array of JSONSchemaProps. Mainly here for serialization purposes.
    type JSONSchemaPropsOrArray struct {
    	Schema      *JSONSchemaProps
    	JSONSchemas []JSONSchemaProps
    }
    
    // JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

    import jcifs.SmbConstants;
    import jcifs.SmbResourceLocator;
    import jcifs.internal.util.StringUtil;
    import jcifs.netbios.NbtAddress;
    import jcifs.netbios.UniAddress;
    
    
    /**
     * 
     * 
     * This mainly tracks two locations:
     * - canonical URL path: path component of the URL: this is used to reconstruct URLs to resources and is not adjusted by
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin.go

    		return nil, false, err
    	}
    
    	if found {
    		return obj.(*cacheEntry).credentials, true, nil
    	}
    
    	return nil, false, nil
    }
    
    // Plugin is the interface calling ExecPlugin. This is mainly for testability
    // so tests don't have to actually exec any processes.
    type Plugin interface {
    	ExecPlugin(ctx context.Context, image string) (*credentialproviderapi.CredentialProviderResponse, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/likelyadjust.go

    	// is less likely. It's possible to assign a negative
    	// unlikeliness (though not currently the case).
    	certain := f.Cache.allocInt8Slice(f.NumBlocks()) // In the long run, all outcomes are at least this bad. Mainly for Exit
    	defer f.Cache.freeInt8Slice(certain)
    	local := f.Cache.allocInt8Slice(f.NumBlocks()) // for our immediate predecessors.
    	defer f.Cache.freeInt8Slice(local)
    
    	po := f.postorder()
    	nest := f.loopnest()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMap.java

      }
    
      /**
       * Returns the empty map. This map behaves and performs comparably to {@link
       * Collections#emptyMap}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/security/security.go

    // authenticationManager orchestrates all authenticators to perform authentication.
    type authenticationManager struct {
    	Authenticators []Authenticator
    	// authFailMsgs contains list of messages that authenticator wants to record - mainly used for logging.
    	authFailMsgs []string
    }
    
    // Authenticate loops through all the configured Authenticators and returns if one of the authenticator succeeds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMap.java

      }
    
      /**
       * Returns the empty map. This map behaves and performs comparably to {@link
       * Collections#emptyMap}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	}
    }
    
    // AddPublicServices adds the services to context public services - mainly used in tests.
    func (ps *PushContext) AddPublicServices(services []*Service) {
    	ps.ServiceIndex.public = append(ps.ServiceIndex.public, services...)
    }
    
    // AddServiceInstances adds instances to the context service instances - mainly used in tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/internal/trace/summary.go

    						return true
    					})
    					if ok {
    						// NB: this PC won't actually be consistent for
    						// goroutines which existed at the start of the
    						// trace. The UI doesn't use it directly; this
    						// mainly serves as an indication that we
    						// actually saw a call stack for the goroutine
    						g.PC = frame.PC
    						g.Name = frame.Func
    					}
    				}
    			}
    
    			// Handle transition in.
    			switch new {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top