Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 4,951 for rreturn (0.12 sec)

  1. cmd/generic-handlers.go

    				if r.TLS != nil {
    					scheme = "https"
    				}
    				return scheme
    			}(),
    		}
    	}
    	return nil
    }
    
    // guessIsHealthCheckReq - returns true if incoming request looks
    // like healthCheck request
    func guessIsHealthCheckReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	aType := getRequestAuthType(req)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 20.7K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        }
    
        /**
         * Returns the domain.
         *
         * @return the authentication domain
         */
        public String getDomain() {
            return domain;
        }
    
        /**
         * Returns the username.
         *
         * @return the username
         */
        public String getUsername() {
            return username;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/LinearTransformation.java

       * and {@link #isVertical} methods return {@code false} and the {@link #slope}, and {@link
       * #transform} methods all return {@link Double#NaN}. The {@link #inverse} method returns the same
       * instance.
       */
      public static LinearTransformation forNaN() {
        return NaNLinearTransformation.INSTANCE;
      }
    
      /** Returns whether this is a vertical transformation. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

              rangesBuffer.writeByte(b3)
            }
          }
        }
      }
    
      return IdnaMappingTableData(
        sections = sectionIndexBuffer.readUtf8(),
        ranges = rangesBuffer.readUtf8(),
        mappings = mappingsBuffer.toString(),
      )
    }
    
    /**
     * If [mapping] qualifies to be encoded as [MappedRange.InlineDelta] return new instance, otherwise null.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/CredentialsInternalTest.java

                }
                if (type.isInstance(this)) {
                    return type.cast(this);
                }
                return null;
            }
    
            @Override
            public String getUserDomain() {
                return this.domain;
            }
    
            @Override
            public boolean isAnonymous() {
                return this.anonymous;
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            public String getName() {
                return name;
            }
    
            @Override
            public String[] getRoleNames() {
                return roleNames;
            }
    
            @Override
            public String[] getGroupNames() {
                return groupNames;
            }
    
            @Override
            public String[] getPermissions() {
                return permissions;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

         *
         * @return the user realm
         */
        public String getUserRealm() {
            return this.userRealm;
        }
    
        /**
         * Returns the user's principal name.
         *
         * @return the user principal name
         */
        public String getUserPrincipalName() {
            return this.userPrincipalName;
        }
    
        /**
         * Returns the list of user addresses.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ArrayTable.java

        @Override
        public int size() {
          return keyIndex.size();
        }
    
        @Override
        public boolean isEmpty() {
          return keyIndex.isEmpty();
        }
    
        Entry<K, V> getEntry(int index) {
          checkElementIndex(index, size());
          return new AbstractMapEntry<K, V>() {
            @Override
            public K getKey() {
              return ArrayMap.this.getKey(index);
            }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/FieldDesc.java

     */
    public interface FieldDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this field.
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * Returns the field.
         *
         * @return the field
         */
        Field getField();
    
        /**
         * Returns the field name.
         *
         * @return the field name
         */
        String getFieldName();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

        }
    
        /**
         * Returns the primary domain name of the server.
         *
         * @return the primaryDomain
         */
        public final String getPrimaryDomain() {
            return this.primaryDomain;
        }
    
        /**
         * Indicates whether the session was established as a guest.
         *
         * @return the isLoggedInAsGuest
         */
        public final boolean isLoggedInAsGuest() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top