Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,379 for nack (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    			// not call Forget if a transient error occurs, instead the item is
    			// put back on the workqueue and attempted again after a back-off
    			// period.
    			defer c.queue.Done(obj)
    			defer c.hasProcessed.Finished(key)
    
    			if err := c.reconcile(key); err != nil {
    				// Put the item back on the workqueue to handle any transient errors.
    				c.queue.AddRateLimited(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLoggingProtocol.java

    package org.gradle.process.internal.worker.child;
    
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    /**
     * Protocol for sending logging information back from a worker process to the daemon.
     */
    public interface WorkerLoggingProtocol {
        /**
         * Sends a log event to the daemon to be logged.
         */
        void sendOutputEvent(LogEvent event);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_en.properties

    labels.logout_button=Logout
    labels.profile=Change Password
    labels.administration=Administration
    labels.profile_button=Profile
    labels.profile.title=Profile
    labels.profile.update=Update
    labels.profile.back=Back
    labels.profile.placeholder_old_password=Current Password
    labels.profile.placeholder_new_password=New Password
    labels.profile.placeholder_confirm_new_password=Confirm New Password
    labels.top.search=Search
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

                    .getDimSize(0),
                12);
      EXPECT_EQ(mlir::cast<RankedTensorType>(transpose_op->getResult(0).getType())
                    .getDimSize(1),
                3);
    
      auto it = fused_lstm_func_.getBody().back().rbegin();
      EXPECT_EQ(it->getName().getStringRef(),
                mlir::func::ReturnOp::getOperationName());
      it++;  // tensor_cast
      it++;  // lstm
      EXPECT_EQ(it->getName().getStringRef(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tests/prepared_stmt_test.go

    )
    
    func TestPreparedStmt(t *testing.T) {
    	tx := DB.Session(&gorm.Session{PrepareStmt: true})
    
    	if _, ok := tx.ConnPool.(*gorm.PreparedStmtDB); !ok {
    		t.Fatalf("should assign PreparedStatement Manager back to database when using PrepareStmt mode")
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
    	defer cancel()
    	txCtx := tx.WithContext(ctx)
    
    	user := *GetUser("prepared_stmt", Config{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 07:55:43 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa_s390x.s

    TEXT ·kdsa(SB), NOSPLIT|NOFRAME, $0-24
    	MOVD fc+0(FP), R0     // function code
    	MOVD params+8(FP), R1 // address parameter block
    
    loop:
    	KDSA R0, R4      // compute digital signature authentication
    	BVS  loop        // branch back if interrupted
    	BGT  retry       // signing unsuccessful, but retry with new CSPRN
    	BLT  error       // condition code of 1 indicates a failure
    
    success:
    	MOVD $0, errn+16(FP) // return 0 - sign/verify was successful
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 891 bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/BuildEvent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Some arbitrary build event sent from build logic back to the build requester.
     */
    public class BuildEvent extends Message {
        private final Object payload;
    
        public BuildEvent(Object payload) {
            this.payload = payload;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    		assert.NotNil(t, fp.ipsetList["KUBE-LOOP-BACK"])
    
    		activeEntries1 := fp.ipsetList["KUBE-LOOP-BACK"].activeEntries
    
    		if tc.expectLocalEntries {
    			assert.Equal(t, 1, activeEntries1.Len(), "Expected 1 active entry in KUBE-LOOP-BACK")
    		} else {
    			assert.Equal(t, 0, activeEntries1.Len(), "Expected no active entry in KUBE-LOOP-BACK")
    		}
    
    		if tc.expectVirtualServer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. hack/boilerplate/boilerplate_test.py

    # limitations under the License.
    
    import os
    import sys
    import unittest
    
    from io import StringIO
    
    import boilerplate
    
    class TestBoilerplate(unittest.TestCase):
        """
        Note: run this test from the hack/boilerplate directory.
    
        $ python -m unittest boilerplate_test
        """
    
        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. hack/make-rules/build.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::golang::build_binaries "$@"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 05 14:36:57 UTC 2024
    - 936 bytes
    - Viewed (0)
Back to top