Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 421 for call27 (0.48 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    // If called multiple times, the Image field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithImage(value string) *ContainerStatusApplyConfiguration {
    	b.Image = &value
    	return b
    }
    
    // WithImageID sets the ImageID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveContext.java

        /**
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
         * called on a configuration that does not permit this usage.
         */
        RootComponentMetadataBuilder.RootComponentState toRootComponent();
    
        AttributeContainerInternal getAttributes();
    
        /**
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/os/writeto_linux_test.go

    	// Now call WriteTo (through io.Copy), which will hopefully call poll.SendFile
    	n, err := io.Copy(dst, src)
    	if err != nil {
    		t.Fatalf("io.Copy error: %v", err)
    	}
    
    	// We should have called poll.Splice with the right file descriptor arguments.
    	if n > 0 && !hook.called {
    		t.Fatal("expected to called poll.SendFile")
    	}
    	if hook.called && hook.srcfd != int(src.Fd()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

     * When such a classloader attempts to define a class, the agent calls {@link #instrumentClass(String, ProtectionDomain, byte[])} method
     * giving the classloader a chance to rewrite the bytecode of the class.
     * <p>
     * Methods defined in this interface may be called concurrently in multiple threads.
     */
    public interface InstrumentingClassLoader {
        /**
         * This hook is called when the class is being defined in this classloader.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    			return nil
    		}
    	}
    	return getg()
    }
    
    // sigtrampgo is called from the signal handler function, sigtramp,
    // written in assembly code.
    // This is called by the signal handler, and the world may be stopped.
    //
    // It must be nosplit because getg() is still the G that was running
    // (if any) when the signal was delivered, but it's (usually) called
    // on the gsignal stack. Until this switches the G to gsignal, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        @SuppressWarnings("unused") // Called by reflection
        private void privateMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        void packagePrivateMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        protected void protectedMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        public void publicMethod() {}
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  7. src/iter/iter.go

    // It is valid to call next after reaching the end of the sequence
    // or after calling stop. These calls will continue
    // to return the zero V and false.
    //
    // Stop ends the iteration. It must be called when the caller is
    // no longer interested in next values and next has not yet
    // signaled that the sequence is over (with a false boolean return).
    // It is valid to call stop multiple times and when next has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        }
        return result
      }
    
      /**
       * Remove this call from the connection's list of allocations. Returns a socket that the caller
       * should close.
       */
      internal fun releaseConnectionNoEvents(): Socket? {
        val connection = this.connection!!
        connection.lock.assertHeld()
    
        val calls = connection.calls
        val index = calls.indexOfFirst { it.get() == this@RealCall }
        check(index != -1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    /**
     * Forbids [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called in the given [action].
     *
     * @param description A human-readable description of the [action], which is used to generate error messages when
     *  [analyze][org.jetbrains.kotlin.analysis.api.analyze] is called.
     */
    @OptIn(KaAnalysisApiInternals::class)
    public inline fun <R> forbidAnalysis(description: String, action: () -> R): R {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	// method for the same plugin was not called.
    	Unreserve(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string)
    }
    
    // PreBindPlugin is an interface that must be implemented by "PreBind" plugins.
    // These plugins are called before a pod being scheduled.
    type PreBindPlugin interface {
    	Plugin
    	// PreBind is called before binding a pod. All prebind plugins must return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top