Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for METHOD (0.11 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    public void ClassMap(Class); Class getCachedClass(); public reflect.Method findMethod(String, Object[]) throws MethodMap$AmbiguousException; private void populateMethodCache(); private String makeMethodKey(reflect.Method); private static String makeMethodKey(String, Object[]); private static reflect.Method[] getAccessibleMethods(Class); private static int getAccessibleMethods(Class, ClassMap$MethodInfo[], int); public static reflect.Method getPublicMethod(reflect.Method); private static reflect.Method...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    case FileType.Missing:
                        return """
                                    outputs.${method}('this_file_does_not.exist').delete()
    
                                """
                    case FileType.Directory:
                        return """
                                    def output = outputs.${method}('directory')
                                    output.mkdirs()
                                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    		// set Method
    		methodExact := match.Method.GetExact()
    		methodPrefix := match.Method.GetPrefix()
    		methodMatch := assignExactOrPrefix(methodExact, methodPrefix)
    		// if no method information, it should be GET by default
    		if methodMatch == "" {
    			methodMatch = matchExact + "GET"
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    }
    
    // killPod instructs the container runtime to kill the pod. This method requires that
    // the pod status contains the result of the last syncPod, otherwise it may fail to
    // terminate newly created containers and sandboxes.
    func (kl *Kubelet) killPod(ctx context.Context, pod *v1.Pod, p kubecontainer.Pod, gracePeriodOverride *int64) error {
    	// Call the container runtime KillPod method which stops all known running containers of the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if fn(mwq) {
    		mwq.Method.Traverse(fn)
    	}
    }
    
    func (mwq *MethodWithQualifiers) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(mwq) {
    		return nil
    	}
    	method := mwq.Method.Copy(fn, skip)
    	var quals AST
    	if mwq.Qualifiers != nil {
    		quals = mwq.Qualifiers.Copy(fn, skip)
    	}
    	if method == nil && quals == nil {
    		return fn(mwq)
    	}
    	if method == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // there is further result sets, or false if there is no further result set
    // or if there is an error advancing to it. The [Rows.Err] method should be consulted
    // to distinguish between the two cases.
    //
    // After calling NextResultSet, the [Rows.Next] method should always be called before
    // scanning. If there are further result sets they may not have rows in the result
    // set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    // provided context may be cancelled if the duration is exceeded. The method may also be interrupted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/testdata/configdump.yaml

                          {
                           "or_rules": {
                            "rules": [
                             {
                              "header": {
                               "name": ":method",
                               "exact_match": "GET"
                              }
                             }
                            ]
                           }
                          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
Back to top