Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Invoke (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/networking/core/route/route.go

    // VirtualHostWrapper is a context-dependent virtual host entry with guarded routes.
    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. .bazelrc

    build:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    build:rbe_cross_compile_base_xla --strategy=Genrule=standalone
    
    # Due to the above strategy, all Genrule commands are executed locally, but the
    # following actions invoke tools (E.g `flatc`, `llvm-tblgen`, etc.) that are
    # only executabe on the RBE (x86) machine, so the strategy_regexp options are
    # added to override and run the actions using remote strategy.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        }
      }
    
      // Drop all the args that have to be skipped.
      for (Value arg : skipped_args) hoister.DropResource(arg);
    
      hoister.ReplaceResourceLoads(/*read_only=*/false);
    
      // For writes, invoke the callback and then erase the write.
      auto assign_ops = func_op.front().getOps<TF::AssignVariableOp>();
      for (auto assign_variable_op : llvm::make_early_inc_range(assign_ops)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	argv = append(argv, godotopath)
    	argv = append(argv, hostObjCopyPaths...)
    
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("archive: %s\n", strings.Join(argv, " "))
    	}
    
    	// If supported, use syscall.Exec() to invoke the archive command,
    	// which should be the final remaining step needed for the link.
    	// This will reduce peak RSS for the link (and speed up linking of
    	// large applications), since when the archive command runs we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top