Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for capsule (0.19 sec)

  1. pkg/proxy/nftables/proxier.go

    				// the cluster will be dropped, but traffic from inside
    				// the cluster may still be accepted.
    				externalTrafficFilterVerdict = "drop"
    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		// Capture the clusterIP.
    		tx.Add(&knftables.Element{
    			Set: clusterIPsSet,
    			Key: []string{svcInfo.ClusterIP().String()},
    		})
    		if hasInternalEndpoints {
    			tx.Add(&knftables.Element{
    				Map: serviceIPsMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	failTestStr := func(testType, failMsg string) string {
    		return fmt.Sprintf("MinIO %s: %s fail for \"%s\": \n<Error> %s", instanceType, testType, testName, failMsg)
    	}
    
    	// httptest Recorder to capture all the response by the http handler.
    	rec := httptest.NewRecorder()
    	// reading the body to preserve it so that it can be used again for second attempt of sending unsigned HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      } else {
        // If `allow_tensorlist_pass_through` is set to true, if legalization fails
        // we should not leak the diagnostic info outside this pass. Hence we use
        // a `StatusScopedDiagnosticHandler` here to capture diagnostics generated
        // within this pass.
        StatusScopedDiagnosticHandler handler(context);
        if (failed(applyPartialConversion(module, target, std::move(patterns)))) {
          auto _ = handler.ConsumeStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              + " ms]";
        }
        return null;
      }
    
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      private void addPendingString(StringBuilder builder) {
        // Capture current builder length so it can be truncated if this future ends up completing while
        // the toString is being calculated
        int truncateLength = builder.length();
    
        builder.append("PENDING");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              + " ms]";
        }
        return null;
      }
    
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      private void addPendingString(StringBuilder builder) {
        // Capture current builder length so it can be truncated if this future ends up completing while
        // the toString is being calculated
        int truncateLength = builder.length();
    
        builder.append("PENDING");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    						e.Result.ClusterMatched = ""
    						e.Result.VirtualHostMatched = util.BlackHole
    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    			manageJobCalled = true
    		}
    		complete := false
    		if job.Spec.Completions == nil {
    			// This type of job is complete when any pod exits with success.
    			// Each pod is capable of
    			// determining whether or not the entire Job is done.  Subsequent pods are
    			// not expected to fail, but if they do, the failure is ignored.  Once any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top