Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for nonexistent1 (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

            def emptyRepo = createDir('empty')
            buildFile '''
    
                configurations {
                    implementation
                }
    
                dependencies {
                    implementation 'non:existent:1.0'
                }
    
                repositories {
                    maven { url = uri('${emptyRepo.uri}') }
                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_test.go

    	}
    	overridesWithDefaultSampling := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				CustomTags: map[string]*tpb.Tracing_CustomTag{
    					"foo": {},
    					"baz": {},
    				},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		name:       "sidecarSelector",
    		inputFiles: []string{"testdata/sidecar-selector.yaml"},
    		analyzer:   &sidecar.SelectorAnalyzer{},
    		expected: []message{
    			{msg.ReferencedResourceNotFound, "Sidecar default/maps-to-nonexistent"},
    			{msg.ReferencedResourceNotFound, "Sidecar other/maps-to-different-ns"},
    			{msg.ConflictingSidecarWorkloadSelectors, "Sidecar default/dupe-1"},
    			{msg.ConflictingSidecarWorkloadSelectors, "Sidecar default/dupe-2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. schema/schema.go

    		if field.DBName == "" && field.DataType != "" {
    			field.DBName = namer.ColumnName(schema.Table, field.Name)
    		}
    
    		bindName := field.BindName()
    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging_test.go

    					},
    				},
    			},
    		},
    	}
    	disabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	nonExistant := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "custom-provider",
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "The default device to assign.">
      ];
      let description = [{
        Assigns the default device to all ops that have an empty (or
        nonexistent) device attribute.
    
        For example, if we have the code
    
        ```mlir
          %0 = "tf.Const"() {value = dense<[[42.0]]> : tensor<1x1xf32>} : () -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    		},
    		// Test case - 2.
    		// Abort non-existing upload ID.
    		{
    			bucket:             bucketName,
    			object:             objectName,
    			uploadID:           "nonexistent-upload-id",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotFound,
    		},
    		// Test case - 3.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * 🛠️ Improve Node.js script in docs to generate TypeScript clients. PR [#11293](https://github.com/tiangolo/fastapi/pull/11293) by [@alejsdev](https://github.com/alejsdev).
    * 📝 Update examples for tests to replace "inexistent" for "nonexistent". PR [#11220](https://github.com/tiangolo/fastapi/pull/11220) by [@Homesteady](https://github.com/Homesteady).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top