Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 948 for ONCE (0.04 sec)

  1. hack/logcheck.conf

    contextual k8s.io/kubernetes/pkg/scheduler/.*
    contextual k8s.io/kubernetes/test/e2e/dra/.*
    
    # As long as contextual logging is alpha or beta, all WithName, WithValues,
    # NewContext calls have to go through klog. Once it is GA, we can lift
    # this restriction. Whether we then do a global search/replace remains
    # to be decided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

        boolean isSingleUse();
    
        /**
         * Invokes the given action when the Daemon becomes unhealthy in way that requires it be terminated at the end of the build.
         * <p>
         * The action will be invoked at-most once during a build.
         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins_providers.go

    	if err != nil {
    		klog.InfoS("Unexpected CSI Migration Feature Flags combination detected, CSI Migration may not take effect", "err", err)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/testenv/testenv.go

    					goBuildErr = fmt.Errorf("%v: no CC reported", cmd)
    					return
    				}
    				_, goBuildErr = exec.LookPath(string(out))
    			}
    		}
    	})
    
    	return goBuildErr == nil
    }
    
    var (
    	goBuildOnce sync.Once
    	goBuildErr  error
    )
    
    // MustHaveGoBuild checks that the current system can build programs with “go build”
    // and then run them with os.StartProcess or exec.Command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	logger := klog.FromContext(ctx)
    
    	// If CSINode doesn't exist, the predicate may read the limits from Node object
    	csiNode, err := pl.csiNodeLister.Get(node.Name)
    	if err != nil {
    		// TODO: return the error once CSINode is created by default (2 releases)
    		logger.V(5).Info("Could not get a CSINode object for the node", "node", klog.KObj(node), "err", err)
    	}
    
    	newVolumes := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1.go

    	separator := byte(0x80) // gets reset to 0x00 once used
    	for i := byte(0); i < chunk; i++ {
    		mask := byte(int8(i-nx) >> 7) // 0x00 after the end of data
    
    		// if we reached the end of the data, replace with 0x80 or 0x00
    		d.x[i] = (^mask & separator) | (mask & d.x[i])
    
    		// zero the separator once used
    		separator &= mask
    
    		if i >= 56 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/settings.md

    ### Creating the `Settings` only once with `lru_cache`
    
    Reading a file from disk is normally a costly (slow) operation, so you probably want to do it only once and then reuse the same settings object, instead of reading it for each request.
    
    But every time we do:
    
    ```Python
    Settings()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

                analysisContext.errorCollector.errors
            )
        }
    
        @Test
        fun `does not report errors on the same import appearing more than once`() {
            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "b", "C"),
                importOf("a", "b", "C")
            )
            val analysisContext = testContext()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/runtime/tracestring.go

    	w.stringData(s)
    
    	// Store back buf in case it was updated during ensure.
    	t.buf = w.traceBuf
    	unlock(&t.lock)
    }
    
    // reset clears the string table and flushes any buffers it has.
    //
    // Must be called only once the caller is certain nothing else will be
    // added to this table.
    func (t *traceStringTable) reset(gen uintptr) {
    	if t.buf != nil {
    		systemstack(func() {
    			lock(&trace.lock)
    			traceBufFlush(t.buf, gen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/plugins_providers.go

    	if err != nil {
    		logger.Error(err, "Unexpected CSI Migration Feature Flags combination detected. CSI Migration may not take effect")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top