Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 466 for comp (0.23 sec)

  1. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

            def id1 = DefaultModuleVersionIdentifier.newId("group", "other-1", "1")
            def comp1 = Stub(TestComponent)
            def publication1 = publication(comp1, id1)
            def id2 = DefaultModuleVersionIdentifier.newId("group", "other-2", "2")
            def comp2 = Stub(TestComponent)
            def publication2 = publication(comp2, id2)
    
            def c1 = Stub(Capability) {
                getGroup() >> 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/compare.go

    		ncs = n.Y
    	case ir.IsConst(n.Y, constant.String):
    		cs = n.Y
    		ncs = n.X
    	}
    	if cs != nil {
    		cmp := n.Op()
    		// Our comparison below assumes that the non-constant string
    		// is on the left hand side, so rewrite "" cmp x to x cmp "".
    		// See issue 24817.
    		if ir.IsConst(n.X, constant.String) {
    			cmp = brrev(cmp)
    		}
    
    		// maxRewriteLen was chosen empirically.
    		// It is the value that minimizes cmd/go file size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    	"sync"
    	"time"
    	"unicode/utf8"
    
    	"github.com/google/uuid"
    	"github.com/klauspost/compress/s2"
    	"github.com/klauspost/readahead"
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    	"github.com/minio/minio/internal/config/compress"
    	"github.com/minio/minio/internal/config/dns"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/hash"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

                    "--add-opens", "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            def lines = process.inputStream.readLines()
            return lines.findAll { it.contains(' | ') }.collect { line ->
                // Looks like:
                // 000 0105673E ABS    notype       Static       | @comp.id
                // 001 80000191 ABS    notype       Static       | @feat.00
                // 002 00000000 SECT1  notype       Static       | .drectve
                // 005 00000000 SECT2  notype       Static       | .debug$S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

                   .attribute(Attribute.of("test.attribute", String), "value")
    
                class MySoftwareComponent implements org.gradle.api.internal.component.SoftwareComponentInternal {
                    String name = 'comp'
                    Set<org.gradle.api.internal.component.UsageContext> getUsages() {
                        return Collections.emptySet()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/common.go

    			// After incrementing the k8s MINOR version by one, if this version is equal or greater than the
    			// MCP version, return true.
    			v := k8sVersion.WithMinor(k8sVersion.Minor() + 1)
    			if comp, _ := v.Compare(mcpVersion.String()); comp != -1 {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // prepareStaticVariables takes a given config and stores values from it in variables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

    project(":project2") {
        publishing {
            publications {
                extraComp(MavenPublication) {
                    from components.java
                    groupId "extra.group"
                    artifactId "extra-comp"
                    version "extra"
                }
                extra(MavenPublication) {
                    groupId "extra.group"
                    artifactId "extra"
                    version "extra"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            app.library.headerFiles*.writeToDir(file("src/input"))
            degenerateInputSources()
    
            when:
            buildFile << """
        apply plugin: 'c'
    
    model {
        components { comp ->
            headersOnly(NativeLibrarySpec) {
                sources {
                    c.generatedBy tasks.generateCSources
                }
            }
            main(NativeExecutableSpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. src/compress/lzw/reader_test.go

    	{
    		"gif;LSB;8",
    		"\x28\xff\xff\xff\x28\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff",
    		"\x00\x51\xfc\x1b\x28\x70\xa0\xc1\x83\x01\x01",
    		nil,
    	},
    	// This example comes from http://compgroups.net/comp.lang.ruby/Decompressing-LZW-compression-from-PDF-file
    	{
    		"pdf;MSB;8",
    		"-----A---B",
    		"\x80\x0b\x60\x50\x22\x0c\x0c\x85\x01",
    		nil,
    	},
    }
    
    func TestReader(t *testing.T) {
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top