Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getZ (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	return watcher, nil
    }
    
    // Get implements storage.Interface.
    func (c *Cacher) Get(ctx context.Context, key string, opts storage.GetOptions, objPtr runtime.Object) error {
    	if opts.ResourceVersion == "" {
    		// If resourceVersion is not specified, serve it from underlying
    		// storage (for backward compatibility).
    		return c.storage.Get(ctx, key, opts, objPtr)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	// (entry value is clusterEvent) together with in-flight pods (entry
    	// value is *v1.Pod). Entries get added at the end while the mutex is
    	// locked, so they get serialized.
    	//
    	// The pod entries are added in Pop and used to track which events
    	// occurred after the pod scheduling attempt for that pod started.
    	// They get removed when the scheduling attempt is done, at which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    						// "dynamic", it later gets mutated to
    						// have it, and then the next attempt to
    						// tx.Add() it here fails because it looks
    						// like we're trying to change the flags.
    						knftables.DynamicFlag,
    						knftables.TimeoutFlag,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    func getAPIError(code APIErrorCode) APIError {
    	if apiErr, ok := errorCodes[code]; ok {
    		return apiErr
    	}
    	return errorCodes.ToAPIErr(ErrInternalError)
    }
    
    // getErrorResponse gets in standard error and resource value and
    // provides a encodable populated response values
    func getAPIErrorResponse(ctx context.Context, err APIError, resource, requestID, hostID string) APIErrorResponse {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Revert "remove legacycloudproviders from staging" ([#124864](https://github.com/kubernetes/kubernetes/pull/124864), [@carlory](https://github.com/carlory)) [SIG Release]
    
    ### Bug or Regression
    
    - .status.terminating field now gets correctly tracked for deleted active Pods when a Job fails. ([#125175](https://github.com/kubernetes/kubernetes/pull/125175), [@dejanzele](https://github.com/dejanzele)) [SIG Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    			buf.WriteByte('\n')
    		}
    	}
    	canonicalHeaders := buf.String()
    
    	// Get signed headers.
    	signedHeaders := strings.Join(headers, ";")
    
    	// Get canonical query string.
    	req.URL.RawQuery = strings.ReplaceAll(req.URL.Query().Encode(), "+", "%20")
    
    	// Get canonical URI.
    	canonicalURI := s3utils.EncodePath(req.URL.Path)
    
    	// Get canonical request.
    	// canonicalRequest =
    	//  <HTTPMethod>\n
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    		currentRV = preset[i].storedObj.ResourceVersion
    	}
    
    	// the first list call should try to get 2 items from etcd (and only those items should be returned)
    	// the field selector should result in it reading 3 items via the transformer
    	// the chunking should result in 2 etcd Gets
    	// there should be a continueValue because there is more data
    	out := &example.PodList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top