Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for atLeast (0.59 sec)

  1. src/main/java/jcifs/DialectVersion.java

            }
            return this.dialect;
        }
    
    
        /**
         * 
         * @param v
         * @return whether this version is a least the given one
         */
        public boolean atLeast ( DialectVersion v ) {
            return ordinal() >= v.ordinal();
        }
    
    
        /**
         * 
         * @param v
         * @return whether this version is a most the given one
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                i++;
            }
    
            if ( config.getMaximumVersion().atLeast(DialectVersion.SMB210) ) {
                System.arraycopy(config.getMachineId(), 0, this.clientGuid, 0, this.clientGuid.length);
            }
    
            List<NegotiateContextRequest> negoContexts = new LinkedList<>();
            if ( config.getMaximumVersion() != null && config.getMaximumVersion().atLeast(DialectVersion.SMB311) ) {
                byte[] salt = new byte[32];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // In order to create or update a ClusterTrustBundle that sets signerName,
      // you must have the following cluster-scoped permission:
      // group=certificates.k8s.io resource=signers resourceName=<the signer name>
      // verb=attest.
      //
      // If signerName is not empty, then the ClusterTrustBundle object must be
      // named with the signer name as a prefix (translating slashes to colons).
      // For example, for the signer name `example.com/foo`, valid
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
Back to top