Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for methods_ (0.14 sec)

  1. 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)
  2. 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)
  3. cmd/object-handlers_test.go

    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create http request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    
    	// Below is how CopyObjectPartHandler is registered.
    	// bucket.Methods(http.MethodPut).Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(api.CopyObjectPartHandler).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // Doc prints the documentation comments associated with the item identified by its
    // arguments (a package, const, func, type, var, method, or struct field)
    // followed by a one-line summary of each of the first-level items "under"
    // that item (package-level declarations for a package, methods for a type,
    // etc.).
    //
    // Doc accepts zero, one, or two arguments.
    //
    // Given no arguments, that is, when run as
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    			podResizeStatus = resizeStatus
    		}
    	}
    	return podResizeStatus
    }
    
    // generateAPIPodStatus creates the final API pod status for a pod, given the
    // internal pod status. This method should only be called from within sync*Pod methods.
    func (kl *Kubelet) generateAPIPodStatus(pod *v1.Pod, podStatus *kubecontainer.PodStatus, podIsTerminal bool) v1.PodStatus {
    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. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(text, sect)
    	if ctxt.IsAIX() && ctxt.IsExternal() {
    		// Setting runtime.text has a real symbol prevents ld to
    		// change its base address resulting in wrong offsets for
    		// reflect methods.
    		u := ldr.MakeSymbolUpdater(text)
    		u.SetAlign(sect.Align)
    		u.SetSize(8)
    	}
    
    	if (ctxt.DynlinkingGo() && ctxt.IsDarwin()) || (ctxt.IsAIX() && ctxt.IsExternal()) {
    		ldr.SetSymSect(etext, sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top