Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Initial (0.11 sec)

  1. cmd/kubelet/app/server.go

    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    			if err := utilfeature.DefaultMutableFeatureGate.SetFromMap(kubeletConfig.FeatureGates); err != nil {
    				return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
    			}
    
    			// validate the initial KubeletFlags
    			if err := options.ValidateKubeletFlags(kubeletFlags); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            assertFalse(state.isEnabledForCurrentThread())
            state.restoreForCurrentThread() // Revert <1>
    
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `initial restore is an exception`() {
            val state = InputTrackingState()
            try {
                state.restoreForCurrentThread()
                Assert.fail("Exception expected")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. cni/cmd/istio-cni/main.go

    	"istio.io/istio/pkg/log"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	if err := runPlugin(); err != nil {
    		os.Exit(1)
    	}
    }
    
    func runPlugin() error {
    	// Setup initial logging now. We will override it with proper logging over UDS later, but at this point we don't have the config
    	// read yet and do not want to be completely blind to logs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        private
        inner class ModeHolder {
            // ModeHolder encapsulates concurrent mode updates.
            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
                    val newMode = transition(mode)
                    mode = newMode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/revisions/tag_watcher.go

    	return p
    }
    
    func (p *tagWatcher) Run(stopCh <-chan struct{}) {
    	if !kube.WaitForCacheSync("tag watcher", stopCh, p.webhooks.HasSynced) {
    		return
    	}
    	// Notify handlers of initial state
    	p.notifyHandlers()
    	p.queue.Run(stopCh)
    }
    
    // AddHandler registers a new handler for updates to tag changes.
    func (p *tagWatcher) AddHandler(handler TagHandler) {
    	p.handlers = append(p.handlers, handler)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

    					Check: check.NoError(), // Do not use check.OK since we expect non-200
    					Retry: echo.Retry{
    						NoRetry: true,
    					},
    				})
    				if err != nil {
    					// Do not fail on errors since there may be initial startup errors
    					// These calls are not under tests, the dashboards are, so we can be leniant here
    					log.Warnf("requests failed: %v", err)
    				}
    				_, err = ing.Call(echo.CallOptions{
    					Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

        /**
         * This method can be used to store user data that should live among with this classloader
         *
         * @param consumerId the consumer
         * @param onMiss called to create the initial data, when not found
         * @param <T> the type of data
         * @return user data
         */
        public synchronized <T> T getUserData(Object consumerId, Factory<T> onMiss) {
            if (userData.containsKey(consumerId)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    //noinspection GroovyAccessibility
                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta_test.go

    				},
    			},
    		},
    	})
    
    	const updateCluster = "outbound|2080||adsupdate.example.com"
    	const staticCluster = "outbound|2080||adsstatic.example.com"
    	ads := s.ConnectDeltaADS()
    	// Send initial request
    	res := ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{TypeUrl: v3.ClusterType})
    	// we must get the cluster back
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

            params+=" --audit-log-batch-throttle-burst=${ADVANCED_AUDIT_LOG_THROTTLE_BURST}"
          fi
          if [[ -n "${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF:-}" ]]; then
            params+=" --audit-log-initial-backoff=${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF}"
          fi
          # Truncating backend parameters
          if [[ -n "${ADVANCED_AUDIT_TRUNCATING_BACKEND:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top