Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for para2 (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        /**
         * Visits all of the dependencies that originate on this node, adding them as outgoing edges.
         * The {@link #outgoingEdges} collection is populated, as is the `discoveredEdges` parameter.
         *
         * @param discoveredEdges A collector for visited edges.
         */
        public void visitOutgoingDependencies(Collection<EdgeState> discoveredEdges) {
            // If this configuration's version is in conflict, do not traverse.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetActiveProcessorCount(groupNumber uint16) (ret uint32)
    //sys	GetMaximumProcessorCount(groupNumber uint16) (ret uint32)
    //sys	EnumWindows(enumFunc uintptr, param unsafe.Pointer) (err error) = user32.EnumWindows
    //sys	EnumChildWindows(hwnd HWND, enumFunc uintptr, param unsafe.Pointer) = user32.EnumChildWindows
    //sys	GetClassName(hwnd HWND, className *uint16, maxCount int32) (copied int32, err error) = user32.GetClassNameW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // resources, which will result in an error.
      //
      // +optional
      optional string namespace = 2;
    
      // selector can be used to match multiple param objects based on their labels.
      // Supply selector: {} to match all resources of the ParamKind.
      //
      // If multiple params are found, they are all evaluated with the policy expressions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Returns whether it is fine to shorten [firQualifiedAccess] or not.
         *
         * @param firQualifiedAccess FIR for the shortening target expression
         * @param calledSymbol The symbol referenced by the qualified access expression
         * @param expressionInScope An expression under the same scope as the shortening target expression
         *
         * The decision has two steps:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // resources, which will result in an error.
      //
      // +optional
      optional string namespace = 2;
    
      // selector can be used to match multiple param objects based on their labels.
      // Supply selector: {} to match all resources of the ParamKind.
      //
      // If multiple params are found, they are all evaluated with the policy expressions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache_test.go

    	b.inputs = append(b.inputs, hostPortInfoParam{protocol, ip, port})
    	return b
    }
    
    func (b *hostPortInfoBuilder) build() framework.HostPortInfo {
    	res := make(framework.HostPortInfo)
    	for _, param := range b.inputs {
    		res.Add(param.ip, param.protocol, param.port)
    	}
    	return res
    }
    
    func newNodeInfo(requestedResource *framework.Resource,
    	nonzeroRequest *framework.Resource,
    	pods []*v1.Pod,
    	usedPorts framework.HostPortInfo,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	var sbCheck bytes.Buffer
    	for i, param := range params {
    		origArg := args[i]
    		arg, nu := p.mangle(f, &args[i], true)
    		if nu {
    			needsUnsafe = true
    		}
    
    		// Use "var x T = ..." syntax to explicitly convert untyped
    		// constants to the parameter type, to avoid a type mismatch.
    		ptype := p.rewriteUnsafe(param.Go)
    
    		if !p.needsPointerCheck(f, param.Go, args[i]) || param.BadPointer || p.checkUnsafeStringData(args[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      static_cast<ThreadWithParamBase*>(thread)->Run();
      return NULL;
    }
    
    // Helper class for testing Google Test's multi-threading constructs.
    // To use it, write:
    //
    //   void ThreadFunc(int param) { /* Do things with param */ }
    //   Notification thread_can_start;
    //   ...
    //   // The thread_can_start parameter is optional; you can supply NULL.
    //   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    // | 95             | true/false          | nil/true/false         |
    // +-----------------+---------------------+-----------------------+
    // where:
    // - false indicates the value of the param was set to "false" by a test case
    // - true  indicates the value of the param was set to "true" by a test case
    func TestGetWatchCacheResourceVersion(t *testing.T) {
    	listOptions := func(allowBookmarks bool, sendInitialEvents *bool, rv string) storage.ListOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      static_cast<ThreadWithParamBase*>(thread)->Run();
      return NULL;
    }
    
    // Helper class for testing Google Test's multi-threading constructs.
    // To use it, write:
    //
    //   void ThreadFunc(int param) { /* Do things with param */ }
    //   Notification thread_can_start;
    //   ...
    //   // The thread_can_start parameter is optional; you can supply NULL.
    //   ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top