Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,587 for semver (0.14 sec)

  1. pilot/cmd/pilot-agent/status/server_test.go

    		statusPort := server.statusPort
    		server.mutex.RUnlock()
    		if statusPort == 0 {
    			return fmt.Errorf("no port allocated")
    		}
    		return nil
    	}, retry.Delay(time.Microsecond)); err != nil {
    		t.Fatalf("failed to getport: %v", err)
    	}
    
    	return server
    }
    
    func TestPprof(t *testing.T) {
    	pprofPath := "/debug/pprof/cmdline"
    	// Starts the pilot agent status server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/net/http/readrequest_test.go

    		noError,
    	},
    
    	// SSDP Notify request. golang.org/issue/3692
    	{
    		"NOTIFY * HTTP/1.1\r\nServer: foo\r\n\r\n",
    		&Request{
    			Method: "NOTIFY",
    			URL: &url.URL{
    				Path: "*",
    			},
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Header: Header{
    				"Server": []string{"foo"},
    			},
    			Close:         false,
    			ContentLength: 0,
    			RequestURI:    "*",
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated.",
    	"status":   "Status is filled in by the server and indicates the set of actions a user can perform.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            }
            this.server.securityMode = buffer[ bufferIndex++ ] & 0xFF;
            this.server.security = this.server.securityMode & 0x01;
            this.server.encryptedPasswords = ( this.server.securityMode & 0x02 ) == 0x02;
            this.server.signaturesEnabled = ( this.server.securityMode & 0x04 ) == 0x04;
            this.server.signaturesRequired = ( this.server.securityMode & 0x08 ) == 0x08;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 15.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "Spec holds information about the request being evaluated.",
    	"status":   "Status is filled in by the server and indicates the set of actions a user can perform.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/authorization/v1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // you made the request against.  If empty, it is defaulted.
      optional SubjectAccessReviewSpec spec = 2;
    
      // Status is filled in by the server and indicates whether the request is allowed or not
      // +optional
      optional SubjectAccessReviewStatus status = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. internal/config/identity/ldap/ldap.go

    // The given username could be just the short "login" username or the full DN.
    //
    // When the username/DN is found, the full DN returned by the **server** is
    // returned, otherwise the returned string is empty. The value returned here is
    // the value sent by the LDAP server and is used in minio as the server performs
    // LDAP specific normalization (including Unicode normalization).
    //
    // If the user is not found, err = nil, otherwise, err != nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/ivy/AbstractIvyRemoteRepoResolveIntegrationTest.groovy

                }
            """
            def moduleA = server.remoteIvyRepo.module('org', 'projectA', '1.2')
            moduleA.dependsOn(organisation: 'org', module: 'projectB', revision: '1.5', revConstraint: 'latest.integration')
                .publish()
    
            def moduleB15 = server.remoteIvyRepo.module('org', 'projectB', '1.5')
            moduleB15.publish()
    
            def moduleB16 = server.remoteIvyRepo.module('org', 'projectB', '1.6')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            proxyServer.requestCount == 1
        }
    
        def "downloads wrapper from basic authenticated server and caches"() {
            given:
            server.withBasicAuthentication("jdoe", "changeit")
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultAuthenticatedBaseUrl())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").sendFile(distribution.binDistribution))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top