Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 528 for logic (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        public static OptionalEntity<KeyMatch> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        public static OptionalEntity<DuplicateHost> getEntity(final CreateForm form, final String username, final long currentTime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/net/http/transfer.go

    	// headers or no Content-Length headers are accepted after removing
    	// the Content-Length field from header.
    	//
    	// Logic based on Transfer-Encoding
    	if chunked {
    		header.Del("Content-Length")
    		return -1, nil
    	}
    
    	// Logic based on Content-Length
    	if len(contentLens) > 0 {
    		return n, nil
    	}
    
    	header.Del("Content-Length")
    
    	if isRequest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

             * this behavior.
             *
             * Changing all of those tests so that they use a KeyStore would have been impractical.
             * Instead, the test fixture was updated to use 127.0.0.1 when making HTTP requests.
             *
             * This allows tests that still want to exercise the deprecation logic to use http://localhost
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

            where:
            type << [BytecodeInterceptorType.INSTRUMENTATION, BytecodeInterceptorType.BYTECODE_UPGRADE]
        }
    
        def "should group visitMethodInsn logic by call owner"() {
            given:
            def givenFirstSource = source """
                package org.gradle.test;
                import org.gradle.internal.instrumentation.api.annotations.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/en/data/github_sponsors.yml

        url: https://github.com/apitally
      - login: logic-automation
        avatarUrl: https://avatars.githubusercontent.com/u/144732884?v=4
        url: https://github.com/logic-automation
      - login: ddilidili
        avatarUrl: https://avatars.githubusercontent.com/u/42176885?u=c0a849dde06987434653197b5f638d3deb55fc6c&v=4
        url: https://github.com/ddilidili
      - login: ramonalmeidam
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cgroup_manager_linux.go

    	// Setting Path is optional as it can be deduced from Name and Parent.
    
    	// TODO(filbranden): This logic belongs in libcontainer/cgroup/systemd instead.
    	// It should take a libcontainerconfigs.Cgroup.Path field (rather than Name and Parent)
    	// and split it appropriately, using essentially the logic below.
    	// This was done for cgroupfs in opencontainers/runc#497 but a counterpart
    	// for systemd was never introduced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

           are free to implement their own logic in these methods which makes it invisible to the metaclass.
    
           The most notable case of this is Closure.
    
           So in this case we use these methods directly on the GroovyObject in case it does implement logic at this level.
         */
        private class GroovyObjectAdapter extends MetaClassAdapter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice.go

    }
    
    // UseIngressSemantics determines which logic we should use for VirtualService
    // This allows ingress and VS to both be represented by VirtualService, but have different
    // semantics.
    func UseIngressSemantics(cfg config.Config) bool {
    	return cfg.Annotations[constants.InternalRouteSemantics] == constants.RouteSemanticsIngress
    }
    
    // UseGatewaySemantics determines which logic we should use for VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	// Setting this can result in an authenticator that will reject all requests.
    	TolerateInClusterLookupFailure bool
    
    	// 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: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
Back to top