Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 186 of 186 for qsub (0.09 sec)

  1. cmd/iam-store.go

    	if accessKey == "" || !cred.IsTemp() || cred.IsExpired() || cred.ParentUser == "" {
    		return time.Time{}, errInvalidArgument
    	}
    
    	ttl := int64(cred.Expiration.Sub(UTCNow()).Seconds())
    
    	cache := store.lock()
    	defer store.unlock()
    
    	if policyName != "" {
    		mp := newMappedPolicy(policyName)
    		_, combinedPolicyStmt := filterPolicies(cache, mp.Policies, "")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    				return
    			}
    		}
    		if deadline.IsZero() {
    			st.readDeadline = nil
    		} else if st.readDeadline == nil {
    			st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout)
    		} else {
    			st.readDeadline.Reset(deadline.Sub(sc.srv.now()))
    		}
    	})
    	return nil
    }
    
    func (w *http2responseWriter) SetWriteDeadline(deadline time.Time) error {
    	st := w.rws.stream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p521_fiat64.go

    //
    // curve description: p521
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	case obj.Status.CompletionTime == nil:
    		jobDuration = duration.HumanDuration(time.Since(obj.Status.StartTime.Time))
    	default:
    		jobDuration = duration.HumanDuration(obj.Status.CompletionTime.Sub(obj.Status.StartTime.Time))
    	}
    	var status string
    	if hasJobCondition(obj.Status.Conditions, batch.JobComplete) {
    		status = "Complete"
    	} else if hasJobCondition(obj.Status.Conditions, batch.JobFailed) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    // packet with the given sourceIP, destIP, and destPort.
    func (tracer *iptablesTracer) ruleMatches(rule *iptablestest.Rule, sourceIP, protocol, destIP, destPort string) bool {
    	// The sub-rules within an iptables rule are ANDed together, so the rule only
    	// matches if all of them match. So go through the subrules, and if any of them
    	// DON'T match, then fail.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    				Description: "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top