Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for injecting (0.52 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		func(runtime.Object) (runtime.Object, error) {
    			return obj, nil
    		}), nil); err != nil {
    		t.Fatalf("GuaranteedUpdate failed: %v", err)
    	}
    
    	// Now trigger watch error by injecting failing transformer.
    	revertTransformer := store.UpdatePrefixTransformer(
    		func(previousTransformer *PrefixTransformer) value.Transformer {
    			return &failingTransformer{}
    		})
    	defer revertTransformer()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	if s.parked {
    		// Unset sysmonWake, since the scavenger is now being awoken.
    		s.sysmonWake.Store(0)
    
    		// s.parked is unset to prevent a double wake-up.
    		s.parked = false
    
    		// Ready the goroutine by injecting it. We use injectglist instead
    		// of ready or goready in order to allow us to run this function
    		// without a P. injectglist also avoids placing the goroutine in
    		// the current P's runnext slot, which is desirable to prevent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	Add(logger klog.Logger, pod *v1.Pod) error
    	// Activate moves the given pods to activeQ iff they're in unschedulablePods or backoffQ.
    	// The passed-in pods are originally compiled from plugins that want to activate Pods,
    	// by injecting the pods through a reserved CycleState struct (PodsToActivate).
    	Activate(logger klog.Logger, pods map[string]*v1.Pod)
    	// AddUnschedulableIfNotPresent adds an unschedulable pod back to scheduling queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    You can access it by <<custom_gradle_types#service_injection, injecting>> the link:{javadocPath}/org/gradle/api/configuration/BuildFeatures.html[`BuildFeatures`] service into your code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "inserting into an undefined property is undefined-safe"() {
            given:
            property.set((Map) null)
            property.insert('k4', '4')
    
            expect:
            assertValueIs(['k4': '4'])
        }
    
        def "inserting after putting an undefined element provider is undefined-safe"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// As we scan the array left-to-right, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      repeated google.protobuf.Struct configVolumes = 23;
    
      repeated google.protobuf.Struct additionalContainers = 24;
    
      google.protobuf.BoolValue runAsRoot = 26;
    
      // The injection template to use for the gateway. If not set, no injection will be performed.
      string injectionTemplate = 27;
    
      ServiceAccount serviceAccount = 28;
    
      // Defines which IP family to use for single stack or the order of IP families for dual-stack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            outputDoesNotContain "'Task#usesService'"
            outputContains """
    service: created with value = 10
    service: value is 11
    service: closed with value 11
            """
        }
    
        def "injection by name can be overridden by explicit convention"() {
            given:
            serviceImplementation()
            customTaskUsingServiceViaProperty("@${ServiceReference.name}('counter')")
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                }
    
                // lifecycle bindings injection
                resultModel = lifecycleBindingsInjector.injectLifecycleBindings(resultModel, request, problems);
            }
    
            // dependency management import
            resultModel = importDependencyManagement(resultModel, request, problems, importIds);
    
            // dependency management injection
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                }
    
                // lifecycle bindings injection
                lifecycleBindingsInjector.injectLifecycleBindings(resultModel, request, problems);
            }
    
            // dependency management import
            importDependencyManagement(resultModel, request, problems, imports);
    
            // dependency management injection
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top