Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for logic (0.41 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Login */
        public static final String LABELS_LOGIN = "{labels.login}";
    
        /** The key of the message: Username */
        public static final String LABELS_LOGIN_placeholder_username = "{labels.login.placeholder_username}";
    
        /** The key of the message: Password */
        public static final String LABELS_LOGIN_placeholder_password = "{labels.login.placeholder_password}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	})).ts
    
    	c := ts.Client()
    	tr := c.Transport.(*Transport)
    
    	doReq := func(name string) {
    		// Do a POST instead of a GET to prevent the Transport's
    		// idempotent request retry logic from kicking in...
    		res, err := c.Post(ts.URL, "", nil)
    		if err != nil {
    			t.Fatalf("%s: %v", name, err)
    		}
    		if res.StatusCode != 200 {
    			t.Fatalf("%s: %v", name, res.Status)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n  1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n  2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n  3. If any matchCondition evaluates to an error (but none are FALSE):\n     - If failurePolicy=Fail,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    list of matchConditions matches all requests. There are a maximum of 64 match conditions allowed.\n\nIf a parameter object is provided, it can be accessed via the `params` handle in the same manner as validation expressions.\n\nThe exact matching logic is (in order):\n  1. If ANY matchCondition evaluates to FALSE, the policy is skipped.\n  2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.\n  3. If any matchCondition evaluates to an error (but none are FALSE):\n     - If failurePolicy=Fail,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	mstart1()
    
    	// Exit this thread.
    	if mStackIsSystemAllocated() {
    		// Windows, Solaris, illumos, Darwin, AIX and Plan 9 always system-allocate
    		// the stack, but put it in gp.stack before mstart,
    		// so the logic above hasn't set osStack yet.
    		osStack = true
    	}
    	mexit(osStack)
    }
    
    // The go:noinline is to guarantee the getcallerpc/getcallersp below are safe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_CronExpression_MESSAGE = "{constraints.CronExpression.message}";
    
        /** The key of the message: Login failed. */
        public static final String ERRORS_LOGIN_FAILURE = "{errors.login.failure}";
    
        /** The key of the message: Please retry because of illegal transition. */
        public static final String ERRORS_APP_ILLEGAL_TRANSITION = "{errors.app.illegal.transition}";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		// Verifies we don't path.Clean() on the wrong parts in redirects:
    		{"/foo?next=http://bar.com/", "/foo?next=http://bar.com/"},
    		{"http://localhost:8080/_ah/login?continue=http://localhost:8080/",
    			"http://localhost:8080/_ah/login?continue=http://localhost:8080/"},
    
    		{"/фубар", "/%d1%84%d1%83%d0%b1%d0%b0%d1%80"},
    		{"http://foo.com/фубар", "http://foo.com/%d1%84%d1%83%d0%b1%d0%b0%d1%80"},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "secretRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.LocalObjectReference",
              "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail."
            },
            "sslEnabled": {
              "description": "Flag to enable/disable SSL communication with Gateway, default false",
              "type": "boolean"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top