Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Satisfied (0.19 sec)

  1. pkg/controller/job/job_controller_test.go

    			expectedReady:         ptr.To[int32](0),
    		},
    		"suspending a job with satisfied expectations": {
    			// Suspended Job should delete active pods when expectations are
    			// satisfied.
    			suspend:                 true,
    			parallelism:             2,
    			activePods:              2, // parallelism == active, expectations satisfied
    			completions:             4,
    			backoffLimit:            6,
    			expectedCreations:       0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: return %[[GATHER]]
    
    // -----
    
    // Tests that a quantized `stablehlo.gather` with unsorted start_index_map is
    // not converted to `tfl.gather_nd` (condition 1 is not satisfied).
    
    func.func @gather_start_index_map_not_sorted(
        %arg0: tensor<3x4x2x2x!quant.uniform<i8:f32, 3.000000e-01:-5>>,
        %arg1: tensor<2x3x2xi64>
      ) -> tensor<2x3x2x2x!quant.uniform<i8:f32, 3.000000e-01:-5>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // build when the "linux" and "386" constraints are satisfied, or when
    // "darwin" is satisfied and "cgo" is not:
    //
    //	//go:build (linux && 386) || (darwin && !cgo)
    //
    // It is an error for a file to have more than one //go:build line.
    //
    // During a particular build, the following build tags are satisfied:
    //
    //   - the target operating system, as spelled by runtime.GOOS, set with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			return nil, fmt.Errorf("error DevicePath `%s` must be an absolute path", device.DevicePath)
    		}
    		vol, ok := podVolumes[device.Name]
    		if !ok || vol.BlockVolumeMapper == nil {
    			klog.ErrorS(nil, "Block volume cannot be satisfied for container, because the volume is missing or the volume mapper is nil", "containerName", container.Name, "device", device)
    			return nil, fmt.Errorf("cannot find volume %q to pass into container %q", device.Name, container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

          <description>The conditions within the build runtime environment which will trigger the
            automatic inclusion of the build profile. Multiple conditions can be defined, which must
            be all satisfied to activate the profile.
          </description>
          <fields>
            <field>
              <name>activeByDefault</name>
              <version>4.0.0+</version>
              <type>boolean</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    func (p *ReplicationPool) ResizeWorkers(n, checkOld int) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    	if (checkOld > 0 && len(p.workers) != checkOld) || n == len(p.workers) || n < 1 {
    		// Either already satisfied or worker count changed while we waited for the lock.
    		return
    	}
    	for len(p.workers) < n {
    		input := make(chan ReplicationWorkerOperation, 10000)
    		p.workers = append(p.workers, input)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, true)
    
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// volumes are unmounted after the pod worker reports ShouldPodRuntimeBeRemoved (which is satisfied
    	// before syncTerminatedPod is invoked)
    	if err := kl.volumeManager.WaitForUnmount(ctx, pod); err != nil {
    		return err
    	}
    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. src/reflect/all_test.go

    func TestUnexportedMethods(t *testing.T) {
    	typ := TypeOf(new(unexp))
    	if got := typ.NumMethod(); got != 0 {
    		t.Errorf("NumMethod=%d, want 0 satisfied methods", got)
    	}
    
    	typ = TypeOf((*unexpI)(nil))
    	if got := typ.Elem().NumMethod(); got != 1 {
    		t.Errorf("NumMethod=%d, want 1 satisfied methods", got)
    	}
    }
    
    type InnerInt struct {
    	X int
    }
    
    type OuterInt struct {
    	Y int
    	InnerInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

          done
          break
        fi
    
        if gcloud compute addresses describe "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" >/dev/null 2>&1; then
          # it exists - postcondition satisfied
          break
        fi
    
        if (( attempt > 4 )); then
          echo -e "${color_red}Failed to create static ip $1 ${color_norm}" >&2
          exit 2
        fi
        attempt=$((attempt + 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top