Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 214 for semver (0.55 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

    [kubernetes-server-linux-arm.tar.gz](https://storage.googleapis.com/kubernetes-release/release/v1.3.10/kubernetes-server-linux-arm.tar.gz) | `40ac46a265021615637f07d532cd563b4256dcf340a27c594bfd3501fe66b84c`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    	}
    
    	var first string
    	select {
    	case first = <-saw:
    	default:
    		t.Fatal("server didn't see a request")
    	}
    
    	var second string
    	select {
    	case second = <-saw:
    	default:
    		t.Fatal("server didn't see a second request")
    	}
    
    	if first != second {
    		t.Fatal("server saw different client ports before & after the redirect")
    	}
    }
    
    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. cmd/iam.go

    )
    
    // UsersSysType - defines the type of users and groups system that is
    // active on the server.
    type UsersSysType string
    
    // Types of users configured in the server.
    const (
    	// This mode uses the internal users system in MinIO.
    	MinIOUsersSysType UsersSysType = "MinIOUsersSys"
    
    	// This mode uses users and groups from a configured LDAP
    	// server.
    	LDAPUsersSysType UsersSysType = "LDAPUsersSys"
    )
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			i := i
    			namespaceLabelReferences.InsertAll(getNamespaceLabelReferences(l.AllowedRoutes)...)
    			server, programmed := buildListener(r, obj, l, i, controllerName)
    
    			servers = append(servers, server)
    			if controllerName == constants.ManagedGatewayMeshController {
    				// Waypoint doesn't actually convert the routes to VirtualServices
    				continue
    			}
    			meta := parentMeta(obj, &l.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    	// Without this cache, it would see the old version of volume.Status and
    	// claim in the informers (it has not been updated from API server events
    	// yet) and it would try to fix these objects to be bound together.
    	// Any write to API server would fail with version conflict - these objects
    	// have been already written.
    	volumes persistentVolumeOrderedIndex
    	claims  cache.Store
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

                throw new SmbException("This client is not compatible with the server.");
            }
    
            boolean serverRequireSig = resp.getResponse().isSigningRequired();
            boolean serverEnableSig = resp.getResponse().isSigningEnabled();
            if ( log.isDebugEnabled() ) {
                log.debug(
                    "Signature negotiation enforced " + this.signingEnforced + " (server " + serverRequireSig + ") enabled "
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

    ## Version 3.7.0
    
    _2017-04-15_
    
     *  **OkHttp no longer recovers from TLS handshake failures by attempting a TLSv1 connection.**
        The fallback was necessary for servers that implemented version negotiation incorrectly. Now
        that 99.99% of servers do it right this fallback is obsolete.
     *  Fix: Do not honor cookies set on a public domain. Previously a malicious site could inject
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    	// blockNextAction should eventually unblock once server gets endpoint request.
    	waitForChanReceive(t, 1*time.Second, blockNextAction, "Service Add should have caused a request to be sent to the test server")
    
    	controller.serviceStore.Delete(svc)
    	controller.onServiceDelete(svc)
    	waitForChanReceive(t, 1*time.Second, blockNextAction, "Service Delete should have caused a request to be sent to the test server")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            ClassNode type = an.getClassNode();
            resolveOrFail(type, ", unable to find class for annotation", an);
            for (Map.Entry<String, Expression> member : an.getMembers().entrySet()) {
                member.setValue(transform(member.getValue()));
            }
            return ace;
        }
    
        @Override
        public void visitAnnotations(AnnotatedNode node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
      // supported by API server, validation will fail for this object.
      // If a persisted webhook configuration specifies allowed versions and does not
      // include any versions known to the API Server, calls to the webhook will fail
      // and be subject to the failure policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top