Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for regular (0.58 sec)

  1. tests/integration/pilot/common/routing.go

    			opts.HTTP.Headers = make(http.Header)
    		}
    		opts.HTTP.Headers.Set(headers.Host, opts.To.Config().ClusterLocalFQDN())
    		noTarget(src, opts)
    	}
    
    	// SingleRegualrPod is already applied leaving one regular pod, to only regular pods should leave a single workload.
    	// the following cases don't actually target workloads, we use the singleTarget filter to avoid duplicate cases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/main/webapp/css/bootstrap.min.css

    eakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/bootstrap.min.css

    eakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "integer"
              },
              "value": {
                "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.",
                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.node.v1.Overhead": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    			return
    		}
    
    		rs, rangeErr = parseRequestRangeSpec(rangeHeader)
    		// Handle only errInvalidRange. Ignore other
    		// parse error and treat it as regular Get
    		// request like Amazon S3.
    		if errors.Is(rangeErr, errInvalidRange) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRange), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    - **Cluster Lifecycle**
      - [alpha] Ensure critical cluster infrastructure pods (Heapster, DNS, etc.) can schedule by evicting regular pods when necessary to make the critical pods schedule. ([docs](http://kubernetes.io/docs/admin/rescheduler/#guaranteed-scheduling-of-critical-add-on-pods)) ([kubernetes/features#62](https://github.com/kubernetes/enhancements/issues/62))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Federated DaemonSet controller. Supports all the API that regular DaemonSet has. ([#34319](https://github.com/kubernetes/kubernetes/pull/34319), [@mwielgus](https://github.com/mwielgus))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    or Shadow. If such a Bubble be cover'd with a concave Glass, to keep it from being agitated by any Wind or Motion of the Air, the Colours will slowly and regularly change their situation, even whilst the Eye and the Bubble, and all Bodies which emit any Light, or cast any Shadow, remain unmoved. And therefore their Colours arise from some regular Cause which depends not on any Confine of Shadow. What this Cause is will be shewed in the next Book. To these Experiments may be added the tenth Experiment...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Section 4.6 > Relationship 13 states an associated transposed
        // convolution should have `s = 1`.
        // For `VALID` padding, the condition below will always hold true.
        // For `SAME` padding, express via regular convolution.
        return output_height > input_height && output_width > input_width &&
               stride_height == 1 && stride_width == 1;
      }
    
      bool IsSamePadding(
          stablehlo::ConvolutionOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    		mask           ContainerType
    	}{
    		{
    			desc:           "empty podspec",
    			spec:           &api.PodSpec{},
    			wantContainers: []string{},
    			mask:           AllContainers,
    		},
    		{
    			desc: "regular containers",
    			spec: &api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    					{Name: "c2"},
    				},
    				InitContainers: []api.Container{
    					{Name: "i1"},
    					{Name: "i2"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top