Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1151 - 1160 of 4,487 for alse (0.05 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java

                    }
                    if (importedClass.startsWith("java.") && isVisibleSystemClass(candidateClassName)) {
                        return candidateClassName;
                    }
                } else if (name.equals(baseName)) {
                    return importedClass;
                }
            }
    
            candidateClassName = classMetaData.getPackageName() + "." + name;
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    	printString("x is nil")
    } else if i, isInt := v.(int); isInt {
    	printInt(i)                            // type of i is int
    } else if i, isFloat64 := v.(float64); isFloat64 {
    	printFloat64(i)                        // type of i is float64
    } else if i, isFunc := v.(func(int) float64); isFunc {
    	printFunction(i)                       // type of i is func(int) float64
    } else {
    	_, isBool := v.(bool)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Enum=True;False;Unknown
      optional string status = 2;
    
      // observedGeneration represents the .metadata.generation that the condition was set based upon.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

                    } else if (logger.isDebugEnabled()) {
                        logger.debug("  Excluded: {}", getId(artifact));
                    }
                }
            }
    
            if (parentImports != null) {
                parentImports = new ArrayList<>(parentImports);
            } else {
                parentImports = new ArrayList<>();
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

        @CanIgnoreReturnValue
        public int setCount(int count) {
          updateLastKnownIndex();
          if (lastKnownIndex == -1) {
            put(key, count);
            return 0;
          } else {
            int old = values[lastKnownIndex];
            values[lastKnownIndex] = count;
            return old;
          }
        }
      }
    
      private static int getHash(long entry) {
        return (int) (entry >>> 32);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/simple-oauth2.md

    The spec also states that the `username` and `password` must be sent as form data (so, no JSON here).
    
    ### `scope`
    
    The spec also says that the client can send another form field "`scope`".
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

          assertEquals(Protocol.HTTP_1_1, response.protocol)
        }
      }
    
      @Test
      fun testCustomTrustManagerWithAndroidCheck() {
        assumeNetwork()
    
        var withHostCalled = false
        var withoutHostCalled = false
        val trustManager =
          object : X509TrustManager {
            override fun checkClientTrusted(
              chain: Array<out X509Certificate>?,
              authType: String?,
            ) {}
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/BigIntegerMath.java

              BigInteger halfPower =
                  SQRT2_PRECOMPUTED_BITS.shiftRight(SQRT2_PRECOMPUTE_THRESHOLD - logFloor);
              if (x.compareTo(halfPower) <= 0) {
                return logFloor;
              } else {
                return logFloor + 1;
              }
            }
            // Since sqrt(2) is irrational, log2(x) - logFloor cannot be exactly 0.5
            //
            // To determine which side of logFloor.5 the logarithm is,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

     */
    public class ActivityHelper {
        protected Logger logger = null;
    
        protected String loggerName = "fess.log.audit";
    
        protected String permissionSeparator = "|";
    
        protected boolean useEcsFormat = false;
    
        protected String ecsVersion = "1.2.0";
    
        protected String ecsServiceName = "fess";
    
        protected String ecsEventDataset = "app";
    
        @PostConstruct
        public void init() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. cmd/listen-notification-handlers.go

    	if bucketName == "" {
    		if s3Error := checkRequestAuthType(ctx, r, policy.ListenNotificationAction, bucketName, ""); s3Error != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    			return
    		}
    	} else {
    		if s3Error := checkRequestAuthType(ctx, r, policy.ListenBucketNotificationAction, bucketName, ""); s3Error != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top