Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,669 for rstore (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/store-route.yaml

    #$ - site-src/guides/multiple-ns.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: store
      namespace: store-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
            value: /store
        backendRefs:
        - name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 333 bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/Store.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal;
    
    import java.util.function.Supplier;
    
    public interface Store<T> {
        T load(Supplier<T> createIfNotPresent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 763 bytes
    - Viewed (0)
  3. pilot/pkg/config/file/store.go

    			_, err := s.inner.Update(*r.config)
    			if err != nil {
    				_, err = s.inner.Create(*r.config)
    				if err != nil {
    					return fmt.Errorf("cannot store config %s/%s %s from reader: %s",
    						r.schema.Version(), r.schema.Kind(), r.fullName(), err)
    				}
    			}
    			s.shas[key] = r.sha
    		}
    		newKeys[key] = r.schema.GroupVersionKind()
    		if oldKeys != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store.go

    		for _, oi := range oldInstances {
    			s.instancesByHostAndPort.Delete(hostPort{ikey, oi.ServicePort.Port})
    			delete(s.ip2instance, oi.Endpoint.Address)
    		}
    	}
    }
    
    // addInstances add the instances to the store.
    func (s *serviceInstancesStore) addInstances(key configKeyWithParent, instances []*model.ServiceInstance) {
    	for _, instance := range instances {
    		ikey := makeInstanceKey(instance)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 588 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 568 bytes
    - Viewed (0)
  9. cmd/iam-object-store.go

    			if err == errConfigNotFound {
    				return errNoSuchPolicy
    			}
    			retries--
    			if retries <= 0 {
    				return err
    			}
    			time.Sleep(500 * time.Millisecond)
    			goto retry
    		}
    
    		m.Store(name, p)
    		return nil
    	}
    }
    
    func (iamOS *IAMObjectStore) loadMappedPolicy(ctx context.Context, name string, userType IAMUserType, isGroup bool, m *xsync.MapOf[string, MappedPolicy]) error {
    	var p MappedPolicy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    		}
    	}
    }
    
    type disruptionController struct {
    	*DisruptionController
    
    	podStore cache.Store
    	pdbStore cache.Store
    	rcStore  cache.Store
    	rsStore  cache.Store
    	dStore   cache.Store
    	ssStore  cache.Store
    
    	coreClient      *fake.Clientset
    	scaleClient     *scalefake.FakeScaleClient
    	discoveryClient *discoveryfake.FakeDiscovery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top