Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for mainIvy (0.19 sec)

  1. 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)
  2. pom.xml

            <configuration>
              <asfExtOptions>
                <charter>The mission of the Apache Maven project is to create and maintain software
                libraries that provide a widely-used project build tool, targeting mainly Java
                development. Apache Maven promotes the use of dependencies via a
                standardized coordinate system, binary plugins, and a standard build
                lifecycle.</charter>
              </asfExtOptions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    	var services []*model.Service
    	// Holds clusters per service, keyed by hostname.
    	serviceClusters := make(map[string]sets.String)
    	// Holds service ports, keyed by hostname.Inner map port and its cluster name.
    	// This is mainly used when service is updated and a port has been removed.
    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // These flags are mainly for tools that understand the module graph.
    // Users should prefer 'go get path@version' or 'go get path@none',
    // which make other go.mod adjustments as needed to satisfy
    // constraints imposed by other modules.
    //
    // The -go=version flag sets the expected Go language version.
    // This flag is mainly for tools that understand Go version dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		c.groupResource,
    		identifier,
    	)
    
    	// note that c.waitUntilWatchCacheFreshAndForceAllEvents must be called without
    	// the c.watchCache.RLock held otherwise we are at risk of a deadlock
    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	// queueingHintMap is keyed with profile name, valued with registered queueing hint functions.
    	queueingHintMap QueueingHintMapPerProfile
    
    	// closed indicates that the queue is closed.
    	// It is mainly used to let Pop() exit its control loop while waiting for an item.
    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		// xl.meta has "inlined data" we prefer writing O_DIRECT and then doing
    		// fdatasync() at the end instead of opening the file with O_DSYNC.
    		//
    		// This is an optimization mainly to ensure faster I/O.
    		if len(b) > xioutil.DirectioAlignSize {
    			r := bytes.NewReader(b)
    			return s.writeAllDirect(ctx, filePath, r.Size(), r, flags, skipParent)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    This was designed this way mainly to allow using the same objects "yielded" by dependencies inside of background tasks, because the exit code would be executed after the background tasks were finished.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Returns the timestamp as a `float64` for seconds since the Unix epoch.
    
    Common usages include:
    * Logging
    * Providing a random number seed
    * Debugging graph execution
    * Generating timing information, mainly through comparison of timestamps
    
    Note: In graph mode, the timestamp is computed when the op is executed,
    not when it is added to the graph.  In eager mode, the timestamp is computed
    when the op is eagerly executed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top