Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for west (0.21 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_CondRegField_6_8, ap_FPReg_11_15, ap_ImmUnsigned_16_21}},
    	{DTSTDGQ, 0xfc0003fe00000000, 0xfc0001c400000000, 0x60000100000000, // DFP Test Data Group Quad Z22-form (dtstdgq BF,FRAp,DGM)
    		[6]*argField{ap_CondRegField_6_8, ap_FPReg_11_15, ap_ImmUnsigned_16_21}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - E2e.test: removed the  `--viper-config` flag. If you were previously using this to pass flags to `e2e.test` via a file, you will need to pass them directly on the command line, e.g. `e2e.test --e2e-output-dir`. ([#102598](https://github.com/kubernetes/kubernetes/pull/102598), [@dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	}
    }
    
    // addressMatches helps test whether an iptables rule such as "! -s 192.168.0.0/16" matches
    // ipStr. address.Value is either an IP address ("1.2.3.4") or a CIDR string
    // ("1.2.3.0/24").
    func addressMatches(t *testing.T, address *iptablestest.IPTablesValue, ipStr string) bool {
    	ip := netutils.ParseIPSloppy(ipStr)
    	if ip == nil {
    		t.Fatalf("Bad IP in test case: %s", ipStr)
    	}
    
    	var matches bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

        - [Container Images](#container-images-8)
      - [Changelog since v1.28.2](#changelog-since-v1282)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-7)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-8)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
      - [Dependencies](#dependencies-8)
        - [Added](#added-8)
        - [Changed](#changed-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// permits using the Framer to test other HTTP/2
    	// implementations' conformance to the spec.
    	// If false, the Write methods will prefer to return an error
    	// rather than comply.
    	AllowIllegalWrites bool
    
    	// AllowIllegalReads permits the Framer's ReadFrame method
    	// to return non-compliant frames or frame orders.
    	// This is for testing and permits using the Framer to test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

       - In version 1.8, enable this behavior by setting the
         `--horizontal-pod-autoscaler-use-rest-clients` flag to `true`.
    
       - In version 1.9, this behavior will be enabled by default, and must be explicitly
         disabled by setting the `--horizontal-pod-autoscaler-use-rest-clients` flag to `false`.
    
    ### Cluster Lifecycle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.23.md

      - [Changelog since v1.23.6](#changelog-since-v1236)
      - [Changes by Kind](#changes-by-kind-10)
        - [API Change](#api-change-2)
        - [Feature](#feature-5)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-10)
      - [Dependencies](#dependencies-10)
        - [Added](#added-10)
        - [Changed](#changed-10)
        - [Removed](#removed-10)
    - [v1.23.6](#v1236)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	ResourceQuotaScopeNotTerminating ResourceQuotaScope = "NotTerminating"
    	// Match all pod objects that have best effort quality of service
    	ResourceQuotaScopeBestEffort ResourceQuotaScope = "BestEffort"
    	// Match all pod objects that do not have best effort quality of service
    	ResourceQuotaScopeNotBestEffort ResourceQuotaScope = "NotBestEffort"
    	// Match all pod objects that have priority class mentioned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		}
    
    		// test if primary clusterIP has changed
    		if len(oldService.Spec.ClusterIPs) > 0 &&
    			len(service.Spec.ClusterIPs) > 0 &&
    			service.Spec.ClusterIPs[0] != oldService.Spec.ClusterIPs[0] {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("spec", "clusterIPs").Index(0), service.Spec.ClusterIPs, "may not change once 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)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
Back to top