Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 173 for Missing (0.13 sec)

  1. src/cmd/compile/internal/types2/expr.go

    				goto Error
    			}
    
    		default:
    			// TODO(gri) provide better error messages depending on context
    			check.error(e, UntypedLit, "missing type in composite literal")
    			goto Error
    		}
    
    		switch utyp := coreType(base).(type) {
    		case *Struct:
    			// Prevent crash if the struct referred to is not yet set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    	}
    	for _, ec := range expected {
    		foundC := false
    		for _, c := range given {
    			if ec.Name == c.Name && ec.Value == c.Value {
    				foundC = true
    				break
    			}
    		}
    		if !foundC {
    			t.Errorf("Missing cookie %v", ec)
    		}
    	}
    }
    
    func TestJarCalls(t *testing.T) { run(t, testJarCalls, []testMode{http1Mode}) }
    func testJarCalls(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    			expectedParsingErr:    nil,
    			expectedValidationErr: errLifecycleDuplicateID,
    		},
    		// Missing <Tag> in <And>
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server_test.go

    		if _, expected := expectedCases["GET:"+expectedPath]; !expected {
    			t.Errorf("Expected registered handle path %s was missing", expectedPath)
    		}
    	}
    
    	for _, tc := range AuthzTestCases() {
    		expectedCases[tc.Method+":"+tc.Path] = true
    	}
    
    	for tc, found := range expectedCases {
    		if !found {
    			t.Errorf("Missing authz test case for %s", tc)
    		}
    	}
    }
    
    func TestAuthFilters(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                var explicitReceiverPsi = when (psi) {
                    is KtQualifiedExpression -> {
                        psi.selectorExpression
                            ?: errorWithAttachment("missing selectorExpression in PSI ${psi::class} for FirImplicitInvokeCall") {
                                withPsiEntry("psi", psi, analysisSession::getModule)
                            }
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	filename = filename[:len(filename)-len(".go")]
    	filename += ".out"
    	b, err := os.ReadFile(filepath.Join(t.gorootTestDir, filename))
    	if errors.Is(err, fs.ErrNotExist) {
    		// File is allowed to be missing, in which case output should be empty.
    		b = nil
    	} else if err != nil {
    		return err
    	}
    	got = strings.Replace(got, "\r\n", "\n", -1)
    	if got != string(b) {
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    	ErrInvalidRepeatSize     ErrorCode = "invalid repeat count"
    	ErrInvalidUTF8           ErrorCode = "invalid UTF-8"
    	ErrMissingBracket        ErrorCode = "missing closing ]"
    	ErrMissingParen          ErrorCode = "missing closing )"
    	ErrMissingRepeatArgument ErrorCode = "missing argument to repetition operator"
    	ErrTrailingBackslash     ErrorCode = "trailing backslash at end of expression"
    	ErrUnexpectedParen       ErrorCode = "unexpected )"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (TFIntListIs1XY1(op, "dilations", &height, &width)) {
          state.dilation_height_factor = height;
          state.dilation_width_factor = width;
        } else {
          // If the 'dilations' attribute is missing, we use the default value (1)
          // for both dilation height and width factor.
          state.dilation_height_factor = intAttrOne;
          state.dilation_width_factor = intAttrOne;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	// If there is a subresource, namespace scoping is defined by the parent resource
    	var namespaceScoped bool
    	if isSubresource {
    		parentStorage, ok := a.group.Storage[resource]
    		if !ok {
    			return nil, nil, fmt.Errorf("missing parent storage: %q", resource)
    		}
    		scoper, ok := parentStorage.(rest.Scoper)
    		if !ok {
    			return nil, nil, fmt.Errorf("%q must implement scoper", resource)
    		}
    		namespaceScoped = scoper.NamespaceScoped()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		if loggerV := logger.V(6); loggerV.Enabled() {
    			loggerV.Info("PodSchedulingContext with missing resource claim information, keep waiting", "pod", klog.KObj(pod), "podSchedulingDiff", cmp.Diff(oldPodScheduling, podScheduling))
    		} else {
    			logger.V(5).Info("PodSchedulingContext with missing resource claim information, keep waiting", "pod", klog.KObj(pod))
    		}
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top