Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for redeclared (0.39 sec)

  1. doc/go1.17_spec.html

    Every identifier in a program must be declared.
    No identifier may be declared twice in the same block, and
    no identifier may be declared in both the file and package block.
    </p>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> may be used like any other identifier
    in a declaration, but it does not introduce a binding and thus is not declared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    			SideEffects:  &noSideEffect,
    			MatchConditions: []admissionregistration.MatchCondition{{
    				Name:       "checkStorage",
    				Expression: "true",
    			}}},
    		}, true),
    		expectedError: `undeclared reference to 'test'`,
    	}}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			errs := ValidateValidatingWebhookConfigurationUpdate(test.config, test.oldconfig)
    			err := errs.ToAggregate()
    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. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.objs[2] + self.objs[0] == self.objs[0]",
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]", // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]",
    
    				"self.objs[2] + [self.objs[0][0], self.objs[0][1]] == self.objs[0]", // concat against a declared list
    				"size(self.objs[0] + [self.objs[3][0]]) == 3",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	// ErrContentLength is returned by ResponseWriter.Write calls
    	// when a Handler set a Content-Length response header with a
    	// declared size and then attempted to write more bytes than
    	// declared.
    	ErrContentLength = errors.New("http: wrote more than the declared Content-Length")
    
    	// Deprecated: ErrWriteAfterFlush is no longer returned by
    	// anything in the net/http package. Callers should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	//         variables in the .Value field; the sources of variables are the declared
    	//         variables of the container and the service environment variables
    	//     b.  If a source is defined for an environment variable, resolve the source
    	// 2.  Create the container's environment in the order variables are declared
    	// 3.  Add remaining service environment vars
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	if err != nil {
    		t.Fatalf("error with Get of %s: %v", url, err)
    	}
    	res.Body.Close()
    
    	if mode != http1Mode {
    		return
    	}
    
    	// Verify that the connection is closed when the declared Content-Length
    	// is larger than what the handler wrote.
    	conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatalf("error dialing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface VirtualMemberHidden : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VirtualMemberHidden::class
            val declared: KaCallableSymbol
            val overriddenContainer: KaClassLikeSymbol
        }
    
        interface ManyCompanionObjects : KaFirDiagnostic<KtObjectDeclaration> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Original: []byte(`
    mergingList:
      - name: 1
        value: a
    `),
    			TwoWay: []byte(`
    mergingList:
      - value: b
    `),
    			ExpectedError: "does not contain declared merge key",
    		},
    	},
    	{
    		Description: "$deleteFromPrimitiveList of nonexistent item in primitive list should not add the item to the list",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    			Count: 1,
    			Port: echo.Port{
    				Name: "http",
    			},
    			Scheme: scheme.TCP,
    			Message: `GET / HTTP/1.0
    `,
    			Timeout: time.Second * 5,
    			TCP: echo.TCP{
    				// Explicitly declared as HTTP, so we always go through http filter which fails
    				ExpectedResponse: &wrappers.StringValue{Value: `HTTP/1.1 426 Upgrade Required`},
    			},
    		},
    	})
    	t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtNamedDeclaration>(firDiagnostic, token), KaFirDiagnostic.NonFinalMemberInObject
    
    internal class VirtualMemberHiddenImpl(
        override val declared: KaCallableSymbol,
        override val overriddenContainer: KaClassLikeSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top