Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for op_eon (0.64 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	if err != nil {
    		return nil, err
    	}
    	ds := &driverStmt{Locker: dc, si: si}
    
    	// No need to manage open statements if there is a single connection grabber.
    	if cg != nil {
    		return ds, nil
    	}
    
    	// Track each driverConn's open statements, so we can close them
    	// before closing the conn.
    	//
    	// Wrap all driver.Stmt is *driverStmt to ensure they are only closed once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_NY      uint32 = 0xE354 // FORMAT_RXY1       AND (32)
    	op_O       uint32 = 0x5600 // FORMAT_RX1        OR (32)
    	op_OC      uint32 = 0xD600 // FORMAT_SS1        OR (character)
    	op_OG      uint32 = 0xE381 // FORMAT_RXY1       OR (64)
    	op_OGR     uint32 = 0xB981 // FORMAT_RRE        OR (64)
    	op_OGRK    uint32 = 0xB9E6 // FORMAT_RRF1       OR (64)
    	op_OI      uint32 = 0x9600 // FORMAT_SI         OR (immediate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	waitListCh := make(chan runtime.Object, 1)
    	go func(listRev uint64) {
    		option := &metainternalversion.ListOptions{ResourceVersion: strconv.FormatUint(listRev, 10)}
    		// It will wait until we create the second pod.
    		l, err := registry.List(ctx, option)
    		if err != nil {
    			close(waitListCh)
    			t.Error(err)
    			return
    		}
    		waitListCh <- l
    	}(rev + 1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      @SuppressWarnings("removal") // b/260137033
      @Override
      protected void finalize() {
        if (state.get().equals(OPEN)) {
          logger.get().log(SEVERE, "Uh oh! An open ClosingFuture has leaked and will close: {0}", this);
          FluentFuture<V> unused = finishToFuture();
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	HandlePodRemoves(pods []*v1.Pod)
    	HandlePodReconcile(pods []*v1.Pod)
    	HandlePodSyncs(pods []*v1.Pod)
    	HandlePodCleanups(ctx context.Context) error
    }
    
    // Option is a functional option type for Kubelet
    type Option func(*Kubelet)
    
    // Bootstrap is a bootstrapping interface for kubelet, targets the initialization protocol
    type Bootstrap interface {
    	GetConfiguration() kubeletconfiginternal.KubeletConfiguration
    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. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    project :impl
    \\--- compileClasspath
    """
        }
    
        def "selects a module component dependency with a given name with dependency command line option"() {
            given:
            mavenRepo.module("org", "leaf1").dependsOnModules("leaf2").publish()
            mavenRepo.module("org", "leaf2").dependsOnModules("leaf3").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    }
    
    // Find the value to pass for the -intgosize option to swig.
    var (
    	swigIntSizeOnce  sync.Once
    	swigIntSize      string
    	swigIntSizeError error
    )
    
    // This code fails to build if sizeof(int) <= 32
    const swigIntSizeCode = `
    package main
    const i int = 1 << 32
    `
    
    // Determine the size of int on the target system for the -intgosize option
    // of swig >= 2.0.9. Run only once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top