Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Missing (0.35 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    			svctest.SetIPFamilies(api.IPv6Protocol)),
    	}, {
    		name:  "missing clusterIPs v4",
    		input: svctest.MakeService("foo", svctest.SetClusterIP("10.0.0.1")),
    		expect: svctest.MakeService("foo", svctest.SetClusterIPs("10.0.0.1"),
    			svctest.SetIPFamilyPolicy(api.IPFamilyPolicySingleStack),
    			svctest.SetIPFamilies(api.IPv4Protocol)),
    	}, {
    		name:  "missing clusterIPs v6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	return b
    }
    
    // pushLine pushes a line number on the line number stack.
    func (s *state) pushLine(line src.XPos) {
    	if !line.IsKnown() {
    		// the frontend may emit node with line number missing,
    		// use the parent line number in this case.
    		line = s.peekPos()
    		if base.Flag.K != 0 {
    			base.Warn("buildssa: unknown position (line 0)")
    		}
    	} else {
    		s.lastPos = line
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ",4:"4",5:"5",6:"6"}},variants:{lineClamp:["responsive"]}});Gd.exports=qC});function go(i){i.content.files.length===0&&F.warn("content-problems",["The `content` option in your Tailwind CSS configuration is missing or empty.","Configure your content sources or your generated CSS will be missing styles.","https://tailwindcss.com/docs/content-configuration"]);try{let e=Hd();i.plugins.includes(e)&&(F.warn("line-clamp-in-core",["As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    class ConvertBatchMatMulV2Op : public OpRewritePattern<TF::BatchMatMulV2Op> {
     public:
      // TODO(hinsu): Legalize this op to Einsum op. HLO Einsum op needs to be moved
      // to CHLO and it is missing legalization to MHLO. Once that is done, this
      // pattern's benefit can be changed back to one as well as the fallback
      // lowering pattern for the op can be removed.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateEphemeralVolumeSource(source.Ephemeral, fldPath.Child("ephemeral"))...)
    			// Check the expected name for the PVC. This gets skipped if information is missing,
    			// because that already gets flagged as a problem elsewhere. For example,
    			// ValidateObjectMeta as called by validatePodMetadataAndSpec checks that the name is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

    If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    // expected, ignoring irrelevant ordering differences. By default this also checks the
    // rules for consistency (eg, no jumps to chains that aren't defined), but that can be
    // disabled by passing false for checkConsistency if you are passing a partial set of rules.
    func assertIPTablesRulesEqual(t *testing.T, line int, checkConsistency bool, expected, result string) {
    	expected = strings.TrimLeft(expected, " \t\n")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      the block is written. Each allocation will also store the sequence
                      number of the block at the time of its creation. When releasing
                      an IP, passing the sequence number associated with the allocation
                      allows us to protect against a race condition and ensure the IP
                      hasn't been released and re-allocated since the release request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// populated if the container is still running and RestartCount is 0.
    	// +optional
    	LastTerminationState ContainerState
    	// Ready specifies whether the container is currently passing its readiness check.
    	// The value will change as readiness probes keep executing. If no readiness
    	// probes are specified, this field defaults to true once the container is
    	// fully started (see Started field).
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ready":              "Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field).\n\nThe value is typically used to determine whether...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top