Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for notified (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //
      // The server guarantees that the objects returned when using continue will be identical to issuing
      // a single list call without a limit - that is, no objects created, modified, or deleted after the
      // first request is issued will be included in any subsequent continued requests. This is sometimes
      // referred to as a consistent snapshot, and ensures that a client that is using limit to receive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    func testClientHead(t *testing.T, mode testMode) {
    	cst := newClientServerTest(t, mode, robotsTxtHandler)
    	r, err := cst.c.Head(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, ok := r.Header["Last-Modified"]; !ok {
    		t.Error("Last-Modified header not found.")
    	}
    }
    
    type recordingTransport struct {
    	req *Request
    }
    
    func (t *recordingTransport) RoundTrip(req *Request) (resp *Response, err error) {
    	t.req = req
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	verifyEventEmitted(t, dc, "UnmanagedPods")
    
    }
    
    // Verify that an integer MaxUnavailable will recompute allowed disruptions when the scale of
    // the selected pod's controller is modified.
    func TestIntegerMaxUnavailableWithScaling(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    
    	pdb, pdbName := newMaxUnavailablePodDisruptionBudget(t, intstr.FromInt32(2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    				v.stop()
    			}
    		}
    		globalBackgroundHealState.Unlock()
    	}
    }
    
    // sets globalIAMSys to `nil`.
    func resetGlobalIAMSys() {
    	globalIAMSys = nil
    }
    
    // Resets all the globals used modified in tests.
    // Resetting ensures that the changes made to globals by one test doesn't affect others.
    func resetTestGlobals() {
    	// set globalObjectAPI to `nil`.
    	resetGlobalObjectAPI()
    	// Reset config path set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * Consumable configurations should not have their dependencies, hierarchy, attributes, etc. modified after they have been published or consumed as a variant.
    * Dependency scope configurations should not have their dependencies, constraints, etc. modified after a configuration that extends from them are observed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    		err := fmt.Errorf("unexpected file distribution (%v) from online disks (%v), looks like backend disks have been manually modified refusing to heal %s/%s(%s)",
    			fi.Erasure.Distribution, onlineDisks, bucket, object, opts.VersionID)
    		storageLogOnceIf(ctx, err, "get-object-file-info-manually-modified")
    		return fi, nil, nil, toObjectErr(err, bucket, object, opts.VersionID)
    	}
    
    	filterOnlineDisksInplace(fi, onlineMeta, onlineDisks)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    //   * a non-null value pointing to the added operation is returned --
    //     this value is valid until the underlying graph is deleted.
    // Otherwise:
    //   * *status is set to a non-OK value,
    //   * the graph is not modified,
    //   * a null value is returned.
    // In either case, it deletes `desc`.
    TF_CAPI_EXPORT extern TF_Operation* TF_FinishOperation(
        TF_OperationDescription* desc, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    The steps below show how to use this notification target in `namespace` format. The other format is very similar and is omitted for brevity.
    
    ### Step 1: Ensure Elasticsearch minimum requirements are met
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		case <-c.stopCh:
    			return
    		}
    	}
    }
    
    func setCachingObjects(event *watchCacheEvent, versioner storage.Versioner) {
    	switch event.Type {
    	case watch.Added, watch.Modified:
    		if object, err := newCachingObject(event.Object); err == nil {
    			event.Object = object
    		} else {
    			klog.Errorf("couldn't create cachingObject from: %#v", event.Object)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                assertConfigurationDependsOn("optionalFeatureRuntimeElements", "org:foo:1.0")
                assertConfigurationDependsOn('runtime', "org:foo:1.0")
            }
        }
    
        def "a component's variant can be modified before publishing"() {
            given:
            createBuildScripts """
                dependencies {
                    api 'org:foo:1.0'
                    implementation 'org:bar:1.0'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
Back to top