Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1291 - 1300 of 4,487 for alse (0.04 sec)

  1. cmd/xl-storage_test.go

    		{"una ñina", true},
    		{"lalalallalallalalalallalallalala-theString-size-is-greater-than-64", true},
    		// cases for which test should fail.
    		// passing invalid bucket names.
    		{"", false},
    		{SlashSeparator, false},
    		{"a", false},
    		{"ab", false},
    		{"ab/", true},
    		{"......", true},
    	}
    
    	for i, testCase := range testCases {
    		isValidVolname := isValidVolname(testCase.volName)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 14 17:11:51 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/ClassPath.java

        static ResourceInfo of(File file, String resourceName, ClassLoader loader) {
          if (resourceName.endsWith(CLASS_FILE_NAME_EXTENSION)) {
            return new ClassInfo(file, resourceName, loader);
          } else {
            return new ResourceInfo(file, resourceName, loader);
          }
        }
    
        ResourceInfo(File file, String resourceName, ClassLoader loader) {
          this.file = checkNotNull(file);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/informers.go

    		if !shouldBeEnabled {
    			log.Debugf("removing pod from mesh: no longer should be enabled")
    			err := s.dataplane.RemovePodFromMesh(s.ctx, pod, false)
    			log.Debugf("RemovePodFromMesh returned: %v", err)
    			// we ignore errors here as we don't want this event to be retried by the queue.
    		} else {
    			// If oldpod != ready && newpod != ready, but the ambient annotation was added,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. fastapi/params.py

            self.use_cache = use_cache
    
        def __repr__(self) -> str:
            attr = getattr(self.dependency, "__name__", type(self.dependency).__name__)
            cache = "" if self.use_cache else ", use_cache=False"
            return f"{self.__class__.__name__}({attr}{cache})"
    
    
    class Security(Depends):
        def __init__(
            self,
            dependency: Optional[Callable[..., Any]] = None,
            *,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 06 18:06:20 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. cmd/bucket-metadata-sys.go

    			cfgData, err = xml.Marshal(lcCfg)
    			if err != nil {
    				return updatedAt, err
    			}
    		}
    		return sys.updateAndParse(ctx, bucket, configFile, cfgData, false)
    	}
    	return sys.updateAndParse(ctx, bucket, configFile, nil, false)
    }
    
    // Update update bucket metadata for the specified bucket.
    // The configData data should not be modified after being sent here.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 28 15:32:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

        return QueueTestSuiteBuilder.using(
                new TestStringQueueGenerator() {
                  @Override
                  public Queue<String> create(String[] elements) {
                    return new ArrayBlockingQueue<>(100, false, MinimalCollection.of(elements));
                  }
                })
            .named("ArrayBlockingQueue")
            .withFeatures(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/ReflectionFreeAssertThrows.java

        return doAssertThrows(
            expectedThrowable,
            () -> {
              runnable.run();
              return null;
            },
            /* userPassedSupplier= */ false);
      }
    
      private static <T extends Throwable> T doAssertThrows(
          Class<T> expectedThrowable, ThrowingSupplier supplier, boolean userPassedSupplier) {
        checkNotNull(expectedThrowable);
        checkNotNull(supplier);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/Hexdump.java

                    toHexChars( i, c, ci, 2 );
                    ci += 2; 
                    if( i < 0 || Character.isISOControl( (char)i )) {
                        d[si % 16] = '.';
                    } else {
                        d[si % 16] = (char)i;
                    }
                } while(( ++si % 16 ) != 0 );
                c[ci++] = ' ';
                c[ci++] = ' ';
                c[ci++] = '|';
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  9. cmd/os-readdir_test.go

    	// If length of expected and got slice are different, the test actually failed.
    	if len(expected) != len(got) {
    		return false
    	}
    
    	for i := range expected {
    		// If entry in expected is not same as entry it got, the test is failed.
    		if expected[i] != got[i] {
    			return false
    		}
    	}
    
    	// expected and got have same entries.
    	return true
    }
    
    // teardown - cleans up test directories.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/math/LongMathTest.java

          BigInteger expectedResult = BigIntegerMath.ceilingPowerOfTwo(BigInteger.valueOf(x));
          if (fitsInLong(expectedResult)) {
            assertEquals(expectedResult.longValue(), LongMath.ceilingPowerOfTwo(x));
          } else {
            assertThrows(ArithmeticException.class, () -> LongMath.ceilingPowerOfTwo(x));
          }
        }
      }
    
      public void testFloorPowerOfTwo() {
        for (long x : POSITIVE_LONG_CANDIDATES) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top