Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 190 for too (0.05 sec)

  1. cmd/xl-storage.go

    		for _, target := range []string{
    			targetPath,
    			targetPath2,
    		} {
    			if target == "" {
    				continue
    			}
    			select {
    			case s.immediatePurge <- target:
    			default:
    				// Too much back pressure, we will perform the delete
    				// blocking at this point we need to serialize operations.
    				removeAll(target)
    			}
    		}
    	}
    
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

     */
    // TODO(kak): Consider removing @CanIgnoreReturnValue from this class.
    @J2ktIncompatible
    @GwtIncompatible
    @SuppressWarnings({
      "GuardedBy", // TODO(b/35466881): Fix or suppress.
      "nullness", // too much trouble for the payoff
    })
    // TODO(cpovirk): Annotate for nullness.
    class MapMakerInternalMap<
            K,
            V,
            E extends MapMakerInternalMap.InternalEntry<K, V, E>,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    === Using `CopySpec.dirPermissions{}`
    
    You can do the same for directories too, independently of files, via the link:{javadocPath}/org/gradle/api/file/CopyProcessingSpec.html#dirPermissions-org.gradle.api.Action-[CopySpec.dirPermissions {}] configurations block.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    TEST_P(DerivedTest, DoesBlah) {
      // GetParam works just the same here as if you inherit from TestWithParam.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	}
    
    	// Anything below 3.94 is known not to work with go binaries
    	if (major < 3) || (major == 3 && minor < 94) {
    		t.Skipf("skipping because upx version %v.%v is too old", major, minor)
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	tg.tempFile("main.go", `package main; import "fmt"; func main() { fmt.Print("hello upx") }`)
    	src := tg.path("main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	//
    	// If the roots are not consistent with the full module graph, the selected
    	// versions of root modules may differ from what we already checked above.
    	// Re-check those paths too.
    
    	mg, _ := rs.Graph(ctx)
    	var importPath string
    	for _, m := range mg.BuildList() {
    		var found bool
    		importPath, found = tryMod(m)
    		if found {
    			break
    		}
    	}
    	return importPath
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    TEST_P(DerivedTest, DoesBlah) {
      // GetParam works just the same here as if you inherit from TestWithParam.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    
    	volumeQty := volume.Spec.Capacity[v1.ResourceStorage]
    	volumeSize := volumeQty.Value()
    	if volumeSize < requestedSize {
    		return fmt.Errorf("requested PV is too small")
    	}
    
    	requestedClass := storagehelpers.GetPersistentVolumeClaimClass(claim)
    	if storagehelpers.GetPersistentVolumeClass(volume) != requestedClass {
    		return fmt.Errorf("storageClassName does not match")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    			}
    			n++
    		}
    		if n != 1 {
    			t.Errorf("%q: incorrect number of map entries: got %d", src, n)
    		}
    	}
    }
    
    // TestTooNew ensures that "too new" errors are emitted when the file
    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    			}
    			n++
    		}
    		if n != 1 {
    			t.Errorf("%q: incorrect number of map entries: got %d", src, n)
    		}
    	}
    }
    
    // TestTooNew ensures that "too new" errors are emitted when the file
    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top