Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 183 for addSdk (0.29 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    			// trying to get an unknown pod should return an error
    			// podToUpdate has not been added yet
    			if _, err := cache.GetPod(tc.podToUpdate); err == nil {
    				t.Error("expected error, no error found")
    			}
    
    			// trying to update an unknown pod should return an error
    			// pod has not been added yet
    			if err := cache.UpdatePod(logger, tc.pod, tc.podToUpdate); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * See <a href="#extraproperties">extra properties</a> for more details.</li>
     *
     * <li>The extensions added to the project by the plugins. Each extension is available as a read-only property with the same name as the extension.</li>
     *
     * <li>The convention properties added to the project by the plugins. A plugin can add properties and methods
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    					return true, nil
    				}
    			}
    			t.Logf(
    				"Warning: Volume <%v> is not added to node  <%v> yet. Will retry.",
    				volumeName,
    				nodeName)
    
    			return false, nil
    		},
    	)
    
    	if err != nil {
    		t.Fatalf(
    			"Volume <%v> is not added to node  <%v>. %v",
    			volumeName,
    			nodeName, err)
    	}
    }
    
    func waitForVolumeRemovedFromNode(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    
    <!-- END MUNGE: GENERATED_TOC -->
    
    # v1.31.0-alpha.1
    
    
    ## Downloads for v1.31.0-alpha.1
    
    
    
    ### Source Code
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	}
    	// Add request processing HPA to queue with resyncPeriod delay.
    	// Requests are always added to queue with resyncPeriod delay. If there's already request
    	// for the HPA in the queue then a new request is always dropped. Requests spend resyncPeriod
    	// in queue so HPAs are processed every resyncPeriod.
    	// Request is added here just in case last resync didn't insert request into the queue. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	pod2DeletedAt3.ResourceVersion = "1003"
    
    	allEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Modified, Object: pod2.DeepCopy()},
    		{Type: watch.Modified, Object: pod3.DeepCopy()},
    		{Type: watch.Deleted, Object: pod4.DeepCopy()},
    	}
    	fooEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Modified, Object: pod2.DeepCopy()},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. fastapi/param_functions.py

            ),
        ] = _Unset,
        openapi_examples: Annotated[
            Optional[Dict[str, Example]],
            Doc(
                """
                OpenAPI-specific examples.
    
                It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                Swagger UI (that provides the `/docs` interface) has better support for the
                OpenAPI-specific examples than the JSON Schema `examples`, that's the main
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string logLevel = 12;
    
      // Configuration for the CNI Repair controller.
      CNIRepairConfig repair = 13;
    
      // Configure the plugin as a chained CNI plugin. When true, the configuration is added to the CNI chain; when false,
      // the configuration is added as a standalone file in the CNI configuration directory.
      google.protobuf.BoolValue chained = 14;
    
      // The resource quotas configration for the CNI DaemonSet.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // call to this method).  Communication ops are added in both `src` and at
    // `insertion_point` using `compilation_key`, `device_ordinal` and
    // `communication_key_index` which is incremented when used. Communication ops
    // are added only when needed and at the location need.  There are checks to
    // ensure that duplicate communication between device and host is not added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def masterParent2Parent2 = conf()
            masterParent2.extendsFrom masterParent2Parent1, masterParent2Parent2
    
            def allArtifacts = master.allArtifacts
    
            def added = []
            allArtifacts.whenObjectAdded { added << it.name }
            def removed = []
            allArtifacts.whenObjectRemoved { removed << it.name }
    
            expect:
            allArtifacts.empty
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top