Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,017 for deflated (0.75 sec)

  1. pkg/kubelet/status/status_manager.go

    				// the condition if the actual status phase transition is delayed.
    				if transitioningToTerminalPhase && !couldHaveRunningContainers {
    					// update the LastTransitionTime again here because the older transition
    					// time set in updateStatusInternal is likely stale as sending of
    					// the condition was delayed until all pod's containers have terminated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/decl.go

    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsKnown() {
    				check.errorf(m.pos, DuplicateMethod, "method %s.%s already declared at %v", obj.Name(), m.name, alt.Pos())
    			} else {
    				check.errorf(m.pos, DuplicateMethod, "method %s.%s already declared", obj.Name(), m.name)
    			}
    			continue
    		}
    
    		if base != nil {
    			base.AddMethod(m)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/tokens_controller.go

    	// ServiceAccountResync is the time.Duration at which to fully re-list service accounts.
    	// If zero, re-list will be delayed as long as possible
    	ServiceAccountResync time.Duration
    	// SecretResync is the time.Duration at which to fully re-list secrets.
    	// If zero, re-list will be delayed as long as possible
    	SecretResync time.Duration
    	// This CA will be added in the secrets of service accounts
    	RootCA []byte
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    		}
    	}
    
    	for key := range updates.ConfigsUpdated {
    		// deleted clusters for this config.
    		var deleted []string
    		var svcs []*model.Service
    		switch key.Kind {
    		case kind.ServiceEntry:
    			svcs, deleted = configgen.deltaFromServices(key, proxy, updates.Push, serviceClusters,
    				servicePortClusters, subsetClusters)
    		case kind.DestinationRule:
    			svcs, deleted = configgen.deltaFromDestinationRules(key, proxy, subsetClusters)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *  - for a script without a package declaration, the plugin id is simply the file name without the
     *  related plugin target suffix (see above)
     *  - for a script containing a package declaration, the plugin id is the declared package name dot the file name without the
     *  related plugin target suffix (see above)
     *
     * For a concrete example, take the definition of a precompiled [Project] script plugin id of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    				clienttesting.NewListAction(podGVR, podGVK, defaultNS, metav1.ListOptions{}),
    				// Fails too
    				clienttesting.NewUpdateAction(pvcGVR, defaultNS, deleted(pvc())),
    				clienttesting.NewListAction(podGVR, podGVK, defaultNS, metav1.ListOptions{}),
    				// Succeeds
    				clienttesting.NewUpdateAction(pvcGVR, defaultNS, deleted(pvc())),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"completionMode":          "completionMode specifies how Pod completions are tracked. It can be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import spock.lang.Issue
    
    class TaskDependencyInferenceIntegrationTest extends AbstractIntegrationSpec implements TasksWithInputsAndOutputs {
        def "dependency declared using task provider implies dependency on task"() {
            buildFile << """
                // verify that eager and lazy providers work
                def providerA = tasks.register("a")
                tasks.create("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsValid() {
    				check.errorf(m, DuplicateMethod, "method %s.%s already declared at %v", obj.Name(), m.name, alt.Pos())
    			} else {
    				check.errorf(m, DuplicateMethod, "method %s.%s already declared", obj.Name(), m.name)
    			}
    			continue
    		}
    
    		if base != nil {
    			base.AddMethod(m)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            e.message == 'Service ListenerManager with implementation DefaultListenerManager implements AnnotatedServiceLifecycleHandler but is not declared as a service of this type. This service is declared as having type ListenerManager.'
        }
    
        def "fails when listener manager factory is not declared as annotation handler"() {
            given:
            def services = new DefaultServiceRegistry()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top