Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 554 for Invokes (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    		}
    		return items.Interface(), nil
    	case reflect.Slice:
    		return items.Addr().Interface(), nil
    	default:
    		return nil, errExpectSliceItems
    	}
    }
    
    // EachListItem invokes fn on each runtime.Object in the list. Any error immediately terminates
    // the loop.
    //
    // If items passed to fn are retained for different durations, and you want to avoid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

            }),
            /**
             * Renames the Closure's original `doCall` method and adds a wrapper method that invokes the original one.
             */
            RENAME_ORIGINAL_DO_CALL("doCall", null, false, (clazz, methodData) -> {
                // A Closure implementation may have an abstract doCall method. It makes no sense to rewrite that.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/internal/poll/fd_unix.go

    func (fd *FD) WriteOnce(p []byte) (int, error) {
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    	return ignoringEINTRIO(syscall.Write, fd.Sysfd, p)
    }
    
    // RawRead invokes the user-defined function f for a read operation.
    func (fd *FD) RawRead(f func(uintptr) bool) error {
    	if err := fd.readLock(); err != nil {
    		return err
    	}
    	defer fd.readUnlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pkg/api/pod/util.go

    // ContainerVisitor is called with each container spec, and returns true
    // if visiting should continue.
    type ContainerVisitor func(container *api.Container, containerType ContainerType) (shouldContinue bool)
    
    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. src/os/signal/doc.go

    If the non-Go code starts a new thread, changes the signal mask, and
    then invokes a Go function in that thread, the Go runtime will
    automatically unblock certain signals: the synchronous signals,
    SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF, SIGCANCEL, and
    SIGSETXID. When the Go function returns, the non-Go signal mask will
    be restored.
    
    If the Go signal handler is invoked on a non-Go thread not running Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    file containing it. Then it invokes the host linker (usually gcc) to
    combine the go.o object file and any supporting non-Go code into a
    final executable. External linking avoids the dynamic library
    requirement but introduces a requirement that the host linker be
    present to create such a binary.
    
    Most builds both compile source code and invoke the linker to create a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    =====
    
    == Step 2. Understanding the Gradle Wrapper
    The Gradle Wrapper is the preferred way of starting a Gradle build.
    The Wrapper downloads (if needed) and then invokes a specific version of Gradle declared in the build.
    
    In your newly created project, take a look at the files used by the Gradle Wrapper first.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

            assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
        }
    }
    ----
    
    The generated test class has a single _JUnit Jupiter_ test.
    The test instantiates the `App` class, invokes a method on it, and checks that it returns the expected value.
    
    == Step 5. Run the App
    
    The Application plugin, which was automatically added by `gradle init`, facilitates creating an executable JVM application:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ComparisonChain.java

     * correctly, calls must be chained as illustrated above.
     *
     * <p>Performance note: Even though the {@code ComparisonChain} caller always invokes its {@code
     * compare} methods unconditionally, the {@code ComparisonChain} implementation stops calling its
     * inputs' {@link Comparable#compareTo compareTo} and {@link Comparator#compare compare} methods as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  10. pkg/registry/rbac/validation/rule.go

    	// can be made on the basis of those rules that are found.
    	RulesFor(user user.Info, namespace string) ([]rbacv1.PolicyRule, error)
    
    	// VisitRulesFor invokes visitor() with each rule that applies to a given user in a given namespace, and each error encountered resolving those rules.
    	// If visitor() returns false, visiting is short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
Back to top