Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for Invoke (0.28 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	return nil
    }
    
    // isSchedulableAfterClaimParametersChange is invoked for add and update claim parameters events reported by
    // an informer. It checks whether that change made a previously unschedulable
    // pod schedulable. It errs on the side of letting a pod scheduling attempt
    // happen. The delete claim event will not invoke it, so newObj will never be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    			utilruntime.HandleError(fmt.Errorf("tombstone contained object that is not a job %+v", obj))
    			return
    		}
    	}
    	jm.cleanupPodFinalizers(jobObj)
    }
    
    // enqueueSyncJobImmediately tells the Job controller to invoke syncJob
    // immediately.
    // It is only used for Job events (creation, deletion, spec update).
    // obj could be an *batch.Job, or a DeletionFinalStateUnknown marker item.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.kotlin.dsl.GroovyInteroperabilityKt.invoke(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GroovyInteroperability.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            methodVisitor.visitTypeInsn(CHECKCAST, boxedType.getInternalName());
    
            if (propertyClass.isPrimitive()) {
                unboxType(methodVisitor, propertyClass);
            }
    
            // invoke the typed setter
            methodVisitor.visitMethodInsn(INVOKEVIRTUAL, generatedType.getInternalName(), setter.getName(), Type.getMethodDescriptor(Type.VOID_TYPE, propertyType), false);
            methodVisitor.visitInsn(RETURN);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. src/go/build/build.go

    // Then we reinvoke it for every dependency. But this is still better than not working at all.
    // See golang.org/issue/26504.
    func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode) error {
    	// To invoke the go command,
    	// we must not being doing special things like AllowBinary or IgnoreVendor,
    	// and all the file system callbacks must be nil (we're meant to use the local file system).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SetsTest.java

        assertThat(units).isEmpty();
      }
    
      public void testToImmutableEnumSetReused() {
        // The method call lets us capture the accumulator as an A and invoke the callbacks manually
        genericTestToImmutableEnumSetReused(Sets.<SomeEnum>toImmutableEnumSet());
      }
    
      private static <A extends @Nullable Object> void genericTestToImmutableEnumSetReused(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    # Default list of admission Controllers to invoke prior to persisting objects in cluster
    # The order defined here does not matter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    // usual `foo.bar.baz` case
                    is KtDotQualifiedExpression -> sourcePsi.selectorExpression
    
                    // short `foo` case, or implicit invoke call like `foo.bar.baz()`
                    else -> sourcePsi
                }
    
                return nameReference as? KtNameReferenceExpression
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Specifies a listener instance that caches should notify each time an entry is removed for any
       * {@linkplain RemovalCause reason}. Each cache created by this builder will invoke this listener
       * as part of the routine maintenance described in the class documentation above.
       *
       * <p><b>Warning:</b> after invoking this method, do not continue to use <i>this</i> cache builder
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

       * primary input fails with the given {@code exceptionType}, from the result provided by the
       * {@code fallback}. {@link Function#apply} is not invoked until the primary input has failed, so
       * if the primary input succeeds, it is never invoked. If, during the invocation of {@code
       * fallback}, an exception is thrown, this exception is used as the result of the output {@code
       * Future}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top