Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,747 for jailed (0.25 sec)

  1. src/io/fs/walk.go

    // WalkDirFunc is the type of the function called by [WalkDir] to visit
    // each file or directory.
    //
    // The path argument contains the argument to [WalkDir] as a prefix.
    // That is, if WalkDir is called with root argument "dir" and finds a file
    // named "a" in that directory, the walk function will be called with
    // argument "dir/a".
    //
    // The d argument is the [DirEntry] for the named path.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

      CUE_NO_SUITENAME      = 21,  /**< Required CU_Suite name not provided. */
      CUE_SINIT_FAILED      = 22,  /**< Suite initialization failed. */
      CUE_SCLEAN_FAILED     = 23,  /**< Suite cleanup failed. */
      CUE_DUP_SUITE         = 24,  /**< Duplicate suite name not allowed. */
      CUE_SUITE_INACTIVE    = 25,  /**< Test run initiated for an inactive suite. */
    
      /* Test Case Level Errors */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. cmd/bucket-stats.go

    			ReplicatedCount:                  st.ReplicatedCount,
    			Failed:                           st.Failed,
    			FailStats:                        st.FailStats,
    		}
    		if s.Failed.ErrCounts == nil {
    			s.Failed.ErrCounts = make(map[string]int)
    			for k, v := range st.Failed.ErrCounts {
    				s.Failed.ErrCounts[k] = v
    			}
    		}
    		c.Stats[arn] = &s
    	}
    	return c
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux.go

    		if err != nil {
    			klog.V(3).Infof("Attempt to clear quota failed: %v", err)
    		}
    		// Even if clearing the quota failed, we still need to
    		// try to remove the project ID, or that may be left dangling.
    		err1 := removeProjectID(path, projid)
    		if err1 != nil {
    			klog.V(3).Infof("Attempt to remove quota ID from system files failed: %v", err1)
    		}
    		clearFSInfo(path)
    		if err != nil {
    			return err
    		}
    		return err1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	// MutationAnnotationFailedOpenKeyPrefix in an annotation indicates
    	// the mutating webhook failed open when the webhook backend connection
    	// failed or returned an internal server error.
    	MutationAuditAnnotationFailedOpenKeyPrefix string = "failed-open." + MutationAuditAnnotationPrefix
    )
    
    type mutatingDispatcher struct {
    	cm     *webhookutil.ClientManager
    	plugin *Plugin
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/test/mockopenidserver.go

    	go func() {
    		if scheme == "https" {
    			if err := server.ServeTLS(ln, ms.TLSCertFile, ms.TLSKeyFile); err != nil {
    				log.Errorf("Server failed to serve TLS in %q: %v", ms.URL, err)
    			}
    			return
    		}
    		if err := server.Serve(ln); err != nil {
    			log.Errorf("Server failed to serve in %q: %v", ms.URL, err)
    		}
    	}()
    
    	// nolint: gosec  // test only code
    	httpClient := &http.Client{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

            }
          }
          completionLatch.countDown();
        }
    
        @Override
        public synchronized void failed(State from, Throwable failure) {
          assertEquals(from, Iterables.getLast(stateHistory));
          stateHistory.add(State.FAILED);
          assertEquals(State.FAILED, service.state());
          assertEquals(failure, service.failureCause());
          if (from == State.STARTING) {
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

            }
          }
          completionLatch.countDown();
        }
    
        @Override
        public synchronized void failed(State from, Throwable failure) {
          assertEquals(from, Iterables.getLast(stateHistory));
          stateHistory.add(State.FAILED);
          assertEquals(State.FAILED, service.state());
          assertEquals(failure, service.failureCause());
          if (from == State.STARTING) {
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/jwks_resolver_test.go

    	defer r.Close()
    
    	ms, err := test.StartNewServer()
    	defer ms.Stop()
    	if err != nil {
    		t.Fatal("failed to start a mock server")
    	}
    
    	mockCertURL := ms.URL + "/oauth2/v3/certs"
    	cases := []struct {
    		in              string
    		expectedJwksURI string
    		expectedError   bool
    	}{
    		{
    			in:              ms.URL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    			if err != nil {
    				t.Fatalf("Test %d: %s: Failed to fetch the copied object: <ERROR> %s", i+1, instanceType, err)
    			}
    			if _, err = io.Copy(buffer, r); err != nil {
    				r.Close()
    				t.Fatalf("Test %d: %s: Failed to fetch the copied object: <ERROR> %s", i+1, instanceType, err)
    			}
    			r.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top