Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Missing (0.13 sec)

  1. pkg/api/pod/util_test.go

    	if missingPaths := expectedSecretPaths.Difference(secretPaths); len(missingPaths) > 0 {
    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    				return &r
    			}(),
    		},
    		}, true),
    		expectedError: `webhooks[0].sideEffects: Unsupported value: "other": supported values: "None", "NoneOnDryRun"`,
    	}, {
    		name: "both service and URL missing",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{},
    		},
    		}, true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				Rewrite: `\2/instance/\1`,
    			},
    			valid: true,
    		},
    		{
    			name: "uriRegexRewrite missing match",
    			in: &networking.RegexRewrite{
    				Rewrite: `\2/instance/\1`,
    			},
    			valid: false,
    		},
    		{
    			name: "uriRegexRewrite missing rewrite",
    			in: &networking.RegexRewrite{
    				Match: "^/service/([^/]+)(/.*)$",
    			},
    			valid: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    						makeNode(pod2ns1, withOwners(pod1ns1)),
    						makeNode(pod1nonamespace, virtual)}, // missing virtual parent replaced with alternate coordinates, still virtual
    					absentOwnerCache: []objectReference{pod1ns1}, // cached absence of missing parent
    					pendingAttemptToDelete: []*node{
    						makeNode(pod2ns1, withOwners(pod1ns1)), // good child of missing parent enqueued for deletion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	if err != nil && !errors.Is(err, BucketReplicationConfigNotFound{Bucket: bucketName}) {
    		return rCfg, err
    	}
    	return rCfg, nil
    }
    
    // validateReplicationDestination returns error if replication destination bucket missing or not configured
    // It also returns true if replication destination is same as this server.
    func validateReplicationDestination(ctx context.Context, bucket string, rCfg *replication.Config, checkRemote bool) (bool, APIError) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    		set:  mkStatefulSet(&validPodTemplate, tweakName(strings.Repeat("a", 64))),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), strings.Repeat("a", 64), ""),
    		},
    	}, {
    		name: "missing-namespace",
    		set:  mkStatefulSet(&validPodTemplate, tweakNamespace("")),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("metadata", "namespace"), ""),
    		},
    	}, {
    		name: "empty selector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    			deletedCnt++
    		}
    		if ss.HasBucket {
    			withB = append(withB, dID)
    		} else {
    			missingB = append(missingB, dID)
    		}
    	}
    
    	latestPeerName := info.Sites[latestID].Name
    	bStatus := info.BucketStats[bucket][latestID].meta
    	isMakeBucket := len(missingB) > 0
    	deleteOp := NoOp
    	if latestID != globalDeploymentID() {
    		return nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    	if _, err := ParseCertificate(block.Bytes); err == nil {
    		t.Error("unexpected success when parsing certificate with missing RSA NULL parameter")
    	} else if !strings.Contains(err.Error(), "missing NULL") {
    		t.Errorf("unrecognised error when parsing certificate with missing RSA NULL parameter: %s", err)
    	}
    }
    
    const certISOOID = `-----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    				flags = append(flags, string(flag))
    			}
    			flag, didQuote = flag[:0], false
    			continue
    		}
    
    		flag = append(flag, c)
    	}
    
    	// Prefer to report a missing quote instead of a missing escape. If the string
    	// is something like `"foo\`, it's ambiguous as to whether the trailing
    	// backslash is really an escape at all.
    	if quote != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      AddNodeAttr("shape", it->second.shape, node);
      return absl::OkStatus();
    }
    
    // Preprocesses GraphDef before it can be converted to Graph by,
    // - Adding the default attributes to each node def if they are missing from
    //   the GraphDef.
    // - Replacing LegacyFedInput nodes with Placeholder nodes if
    //   convert_legacy_fed_inputs option is enabled.
    Status PreprocessGraphDef(const GraphImportConfig* specs, GraphDef* graph_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top