Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for mget (0.35 sec)

  1. maven-model-builder/src/test/resources/poms/validation/missing-dependency-mgmt-groupId-pom.xml

    Benjamin Bentmann <******@****.***> 1243457293 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1.1K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/missing-dependency-mgmt-version-pom.xml

    Benjamin Bentmann <******@****.***> 1243457293 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

            compileClasspath += sourceSets.main.get().output
            runtimeClasspath += sourceSets.main.get().output
        }
    }
    
    val intTestImplementation by configurations.getting {
        extendsFrom(configurations.implementation.get())
    }
    val intTestRuntimeOnly by configurations.getting
    
    configurations["intTestRuntimeOnly"].extendsFrom(configurations.runtimeOnly.get())
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/da/stopwords.txt

    alle
    vil
    blev
    kunne
    ind
    når
    være
    dog
    noget
    ville
    jo
    deres
    efter
    ned
    skulle
    denne
    end
    dette
    mit
    også
    under
    have
    dig
    anden
    hende
    mine
    alt
    meget
    sit
    sine
    vor
    mod
    disse
    hvis
    din
    nogle
    hos
    blive
    mange
    ad
    bliver
    hendes
    været
    thi
    jer
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 564 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

        /**
         * Returns a collection which contains the objects in this collection which meet the given specification. The
         * returned collection is live, so that when matching objects are added to this collection, they are also visible in
         * the filtered collection.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/Optional.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a task property as optional. This means that a value does not have to be specified for the property, but any
     * value specified must meet the validation constraints for the property.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:58:37 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy_none.go

    	return nil
    }
    
    // Assignable CPUs are the ones that can be exclusively allocated to pods that meet the exclusivity requirement
    // (ie guaranteed QoS class and integral CPU request).
    // Assignability of CPUs as a concept is only applicable in case of static policy i.e. scenarios where workloads
    // CAN get exclusive access to core(s).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. docs/debugging/xattr/main.go

    	"github.com/olekukonko/tablewriter"
    	"github.com/pkg/xattr"
    )
    
    var (
    	path, name string
    	value      uint64
    	set, list  bool
    )
    
    func getxattr(path, name string) (uint64, error) {
    	buf, err := xattr.LGet(path, name)
    	if err != nil {
    		return 0, err
    	}
    
    	return binary.LittleEndian.Uint64(buf[:8]), nil
    }
    
    func listxattr(path string) ([]string, error) {
    	return xattr.LList(path)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    	if t, _ := base.under().(*Struct); t != nil {
    		var mset objset
    		for i := 0; i < base.NumMethods(); i++ {
    			m := base.Method(i)
    			assert(m.name != "_")
    			assert(mset.insert(m) == nil)
    		}
    
    		// Check that any non-blank field names of base are distinct from its
    		// method names.
    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    go mod tidy
    cmp go.mod.orig go.mod
    
    # Downgrading d to version 1 downgrades b, which upgrades c.
    go get -v example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.2.0 '
    stdout '^example.com/d v0.1.0 '
    cmp go.mod go.mod.down1
    
    # Restoring c to version 1 upgrades d to meet c's requirements.
    go get example.com/c@v0.1.0
    go list -m all
    ! stdout '^example.com/b '
    stdout '^example.com/c v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top