Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for pass2 (0.1 sec)

  1. pkg/kube/kclient/client_test.go

    	// The ordering of handlers if random. If the filter receives the event first, it could suppress re-sending the namespace event,
    	// and the usual "add" notification would pass the filter.
    	// However, if the ordering is backwards there, it would not pass the filter.
    	// We tradeoff the possibility for 2 add events instead of possibly missing events.
    	retry.UntilOrFail(t, func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                // Pass build JVM args through to daemon via system property on the launcher JVM
                String quotedArgs = join(" ", collect(gradleInvocation.buildJvmArgs, input -> String.format("'%s'", input)));
                gradleInvocation.implicitLauncherJvmArgs.add("-Dorg.gradle.jvmargs=" + quotedArgs);
            } else {
                // Have to pass build JVM args directly to launcher JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin.go

    	var result *cniv1.Result
    	if conf.PrevResult == nil {
    		result = &cniv1.Result{
    			CNIVersion: cniv1.ImplementedSpecVersion,
    		}
    		return types.PrintResult(result, conf.CNIVersion)
    	}
    
    	// Pass through the result for the next plugin
    	return types.PrintResult(conf.PrevResult, conf.CNIVersion)
    }
    
    func CmdCheck(args *skel.CmdArgs) (err error) {
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "mlir/Interfaces/FunctionInterfaces.h"  // from @llvm-project
    #include "mlir/Interfaces/InferTypeOpInterface.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/DebugStringHelper.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    			klog.ErrorS(nil, "Block volume cannot be satisfied for container, because the volume is missing or the volume mapper is nil", "containerName", container.Name, "device", device)
    			return nil, fmt.Errorf("cannot find volume %q to pass into container %q", device.Name, container.Name)
    		}
    		// Get a symbolic link associated to a block device under pod device path
    		dirPath, volName := vol.BlockVolumeMapper.GetPodDeviceMapPath()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		CNIConfName:      viper.GetString(constants.CNIConfName),
    		ChainedCNIPlugin: viper.GetBool(constants.ChainedCNIPlugin),
    
    		// Whatever user has set (with --log_output_level) for 'cni-plugin', pass it down to the plugin. It will use this to determine
    		// what level to use for itself.
    		// This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    		limit = 1
    	}
    
    	// First pass: assign addresses assuming the program is small and will
    	// not require trampoline generation.
    	big := false
    	for _, s := range ctxt.Textp {
    		sect, n, va = assignAddress(ctxt, sect, n, s, va, false, big)
    		if va-start >= limit {
    			big = true
    			break
    		}
    	}
    
    	// Second pass: only if it is too big, insert trampolines for too-far
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    				{
    					Name: "plaintext on plaintext port",
    					Call: mkCall(9090, simulation.Plaintext),
    					// port 9090 not defined in partialSidecar and will use plain text, plaintext request should pass.
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    				},
    				{
    					Name: "tls on plaintext port",
    					Call: mkCall(9090, simulation.MTLS),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    http://swig.org/. When running go build, any file with a .swig
    extension will be passed to SWIG. Any file with a .swigcxx extension
    will be passed to SWIG with the -c++ option.
    
    When either cgo or SWIG is used, go build will pass any .c, .m, .s, .S
    or .sx files to the C compiler, and any .cc, .cpp, .cxx files to the C++
    compiler. The CC or CXX environment variables may be set to determine
    the C or C++ compiler, respectively, to use.
    	`,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          for (TwoArg.Action second : TwoArg.Action.values()) {
            TwoArg bar = new TwoArg(first, second);
            if (first.equals(TwoArg.Action.THROW_A_NPE)) {
              verifyBarPass(method, bar); // only pass if 1st param throws NPE
            } else {
              verifyBarFail(method, bar);
            }
          }
        }
      }
    
      public void testTwoArgNullableNormal() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top