Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for capmem (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

            String capItem = StringUtils.capitalize(singularItemDescription);
            if (!matches.isEmpty()) {
                return String.format("%s '%s' is ambiguous in %s. Candidates are: %s.", capItem, pattern, container, GUtil.toString(matches));
            }
            if (!candidates.isEmpty()) {
                return String.format("%s '%s' not found in %s. Some candidates are: %s.", capItem, pattern, container, GUtil.toString(candidates));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    	return int(right >> 62)
    }
    
    func capver(rights *CapRights) int {
    	return caprver(rights.Rights[0])
    }
    
    func caparsize(rights *CapRights) int {
    	return capver(rights) + 2
    }
    
    // CapRightsSet sets the permissions in setrights in rights.
    func CapRightsSet(rights *CapRights, setrights []uint64) error {
    	// This is essentially a copy of cap_rights_vset()
    	if capver(rights) != CAP_RIGHTS_VERSION_00 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

                    {
                        "group": "org.apache.camel",
                        "module": "camel-jackson",
                        "version": {
                            "prefers": "2.15.3"
                        },
                        "excludes": [
                            {
                                "group": "*",
                                "module": "camel-core"
                            }
                        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            run "thing"
    
            then:
            result.assertTasksExecuted(":a:thing")
    
            // camel case matching
            when:
            run "th"
    
            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "can use camel-case for all segments of qualified task name"() {
            createDirs("child", "child/child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

        // Allocate a new storage instance.
        auto byteSize = TFRTypeStorage::totalSizeToAlloc<StringAttr>(key.size());
        auto rawMem = allocator.allocate(byteSize, alignof(TFRTypeStorage));
        auto result = ::new (rawMem) TFRTypeStorage(key.size());
    
        // Copy in the string attributes into the trailing storage.
        std::uninitialized_copy(key.begin(), key.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/internal/WrapperPluginAutoApplyActionIntegTest.groovy

            run 'tasks'
            then:
            output.contains("wrapper - Generates Gradle wrapper files.")
    
            when:
            run 'wrapper'
            then:
            wrapper.generated()
        }
    
        def "can use camel-case for dynamically applied wrapper plugin "() {
            when:
            run taskName
            then:
            wrapper.generated()
            where:
            taskName << ["wrapp"]//, "wrap", "w"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

    import java.util.regex.Pattern;
    
    /**
     * Selects a single item from a collection based on a camel case pattern.
     */
    public class NameMatcher {
        private final SortedSet<String> matches = new TreeSet<>();
        private final Set<String> candidates = new TreeSet<>();
        private String pattern;
    
        /**
         * Locates the best match for a camel case pattern in a key set of a map and returns the corresponding value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. internal/bpool/bpool_test.go

    	}
    	if cap(b) != capWidth {
    		t.Fatalf("bytepool cap invalid: got %v want %v", cap(b), capWidth)
    	}
    
    	bufPool.Put(b)
    
    	// Fill the pool beyond the capped pool size.
    	for i := uint64(0); i < size*2; i++ {
    		bufPool.Put(make([]byte, bufPool.w))
    	}
    
    	b = bufPool.Get()
    	if len(b) != width {
    		t.Fatalf("bytepool length invalid: got %v want %v", len(b), width)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 19:13:27 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/alg.go

    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    // When a Quantity is parsed from a string, it will remember the type of suffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top