Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 528 for logic (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        protected void loadScheduledJob(final EditForm form, final ScheduledJob entity) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    )
    
    // nothing will ever be sent down this channel
    var neverExitWatch <-chan time.Time = make(chan time.Time)
    
    // timeoutFactory abstracts watch timeout logic for testing
    type TimeoutFactory interface {
    	TimeoutCh() (<-chan time.Time, func() bool)
    }
    
    // realTimeoutFactory implements timeoutFactory
    type realTimeoutFactory struct {
    	timeout time.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    	}
    
    	return types.Bool(ip.Addr.IsGlobalUnicast())
    }
    
    // parseIPAddr parses a string into an IP address.
    // We use this function to parse IP addresses in the CEL library
    // so that we can share the common logic of rejecting IP addresses
    // that contain zones or are IPv4-mapped IPv6 addresses.
    func parseIPAddr(raw string) (netip.Addr, error) {
    	addr, err := netip.ParseAddr(raw)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        // then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
        // in our test environment, which foils the purpose of this test, so we disable the logic for
        // our test by setting a static field. We are changing the field in the parallel version of FRQ
        // and each test creates its own one of those, so there is no test interference here.
        Class<?> sepFrqSystemLoaderC =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/authenticator/config.go

    	WebhookTokenAuthnConfigFile string
    	WebhookTokenAuthnVersion    string
    	WebhookTokenAuthnCacheTTL   time.Duration
    	// WebhookRetryBackoff specifies the backoff parameters for the authentication webhook retry logic.
    	// This allows us to configure the sleep time at each iteration and the maximum number of retries allowed
    	// before we fail the webhook call in order to limit the fan out that ensues when the system is degraded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // meaning that the death test child process will re-execute the test binary
    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    // This file implements logic for lowering TensorFlow dialect's collective
    // ops (TF/XLA) to the HLO dialect.
    
    #include <numeric>
    #include <string>
    #include <utility>
    
    #include "llvm/ADT/StringRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. tests/integration/README.md

    | --- |
    
    Next you need to implement your component for one or more environments. If possible, create both a native and Kubernetes version.
    
    ```go
    package mycomponent
    
    type nativeComponent struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

     *
     * @author Anthony Zana
     * @since 10.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Uninterruptibles {
    
      // Implementation Note: As of 3-7-11, the logic for each blocking/timeout
      // methods is identical, save for method being invoked.
    
      /** Invokes {@code latch.}{@link CountDownLatch#await() await()} uninterruptibly. */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    		// images using the go-containerregistry (crane) libraries.
    		// The crane builder is much faster but less tested.
    		// Neither builder is doing standard logic; see each builder for details.
    		if args.Builder == CraneBuilder {
    			return RunCrane(ctx, args)
    		}
    
    		return RunDocker(args)
    	},
    }
    
    func ValidateArgs(a Args) error {
    	if len(a.Targets) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top