Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 179 for _default_ (0.17 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			want: want{
    				prefilter: result{
    					status: framework.AsStatus(errors.New(`multiple generated claim parameters for ResourceClaimParameters.example.com default/my-pod-my-resource found: [default/my-pod-my-resource default/other]`)),
    				},
    				postfilter: result{
    					status: framework.NewStatus(framework.Unschedulable, `no new claims to deallocate`),
    				},
    			},
    		},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objectMeta := t.getObjectMetaOrFail(valid)
    
    	// Ignore non-empty namespace in object meta
    	objectMeta.SetNamespace("not-default")
    	ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), "not-default2")
    
    	// Ideally, we'd get an error back here, but at least verify the namespace wasn't persisted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. cmd/bucket-replication-utils_gen.go

    							return
    						}
    					default:
    						err = dc.Skip()
    						if err != nil {
    							err = msgp.WrapError(err, "Entries", za0001)
    							return
    						}
    					}
    				}
    				z.Entries[za0001] = za0002
    			}
    		case "v":
    			z.Version, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

      * Fix problems with >2 security groups
    * GCP:
      * Enable using gcr.io as a Docker registry mirror.
      * Make bigger master root disks in GCE for large clusters.
      * Change default clusterCIDRs from /16 to /14 allowing 1000 Node clusters by default.
      * Allow Debian Jessie on GCE.
      * Node problem detector addon pod detects and reports kernel deadlocks.
    * OpenStack
      * Provider added.
    * VSphere:
      * Provider updated.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. .bazelrc

    #     release_cpu_windows:             Toolchain and CUDA options for Windows CPU builds.
    
    # Default build options. These are applied first and unconditionally.
    
    # For projects which use TensorFlow as part of a Bazel build process, putting
    # nothing in a bazelrc will default to a monolithic build. The following line
    # opts in to modular op registration support by default.
    build --define framework_shared_object=true
    build --define tsl_protobuf_header_only=true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

                    items:
                      type: object
              default-with-items-and-no-type:
                type: object
                properties:
                  type:
                    type: string
                  items:
                    type: array
                    items:
                      type: object
                default: {"items": []}
              issue-84880:
                type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    			}
    			break
    		}
    		// Update operand types to the default type rather than the target
    		// (interface) type: values must have concrete dynamic types.
    		// Untyped nil was handled upfront.
    		if !u.Empty() {
    			return nil, nil, InvalidUntypedConversion // cannot assign untyped values to non-empty interfaces
    		}
    		return Default(x.typ), nil, 0 // default type for nil is nil
    	default:
    		return nil, nil, InvalidUntypedConversion
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            conventionAware.getConventionMapping().map("prop", new Callable<Object>() {
                public Object call() throws Exception {
                    return "[default]";
                }
            });
    
            assertThat(bean.getProp(), equalTo("[default]"));
    
            call("{ it.prop 'value'}", bean);
            assertThat(bean.getProp(), equalTo("value"));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    						columnType)
    				}
    				if v, ok := columnType.DefaultValue(); !ok || v != "hello" {
    					t.Fatalf("column code default value should be correct, name: %v, column: %#v, default value: %v",
    						columnType.Name(), columnType, v)
    				}
    				if v, ok := columnType.Comment(); !ok || v != "my code2" {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	//
    	// If CipherSuites is nil, a safe default list is used. The default cipher
    	// suites might change over time. In Go 1.22 RSA key exchange based cipher
    	// suites were removed from the default list, but can be re-added with the
    	// GODEBUG setting tlsrsakex=1. In Go 1.23 3DES cipher suites were removed
    	// from the default list, but can be re-added with the GODEBUG setting
    	// tls3des=1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top