Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,094 for Binary1 (0.09 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

          "WINDOW_UPDATE", "CONTINUATION",
        )
    
      /**
       * Lookup table for valid flags for DATA, HEADERS, CONTINUATION. Invalid combinations are
       * represented in binary.
       */
      private val FLAGS = arrayOfNulls<String>(0x40) // Highest bit flag is 0x20.
      private val BINARY =
        Array(256) {
          format("%8s", Integer.toBinaryString(it)).replace(' ', '0')
        }
    
      init {
        FLAGS[FLAG_NONE] = ""
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/build.gradle

                        }
                    }
                }
    // end::cpp-sources[]
                binaries.all {
                    // Each executable binary produced uses the 'hello' static library binary
                    lib library: 'hello', linkage: 'static'
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1014 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
        public static final String URL = "https://www.gradle.org";
    
        /**
         * This field only kept here to maintain binary compatibility.
         *
         * @deprecated will be removed in Gradle 9.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryTasksCollectionTest.groovy

    import spock.lang.Specification
    
    class DefaultBinaryTasksCollectionTest extends Specification {
        def binary = Mock(BinarySpecInternal)
        def taskFactory = Mock(NamedEntityInstantiator)
        def tasks = new DefaultBinaryTasksCollection(binary, taskFactory, CollectionCallbackActionDecorator.NOOP)
        def task = Mock(Task)
    
        def "can create task"() {
            def action = Mock(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/LibraryResolutionResult.java

        private final Map<String, VariantComponent> libsNotMatchingRequirements;
        private final Class<? extends Binary> binaryType;
    
        private boolean projectNotFound;
    
        private VariantComponent selectedLibrary;
        private VariantComponent nonMatchingLibrary;
    
        private LibraryResolutionResult(Class<? extends Binary> binaryType) {
            this.binaryType = binaryType;
            this.libsMatchingRequirements = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

        public abstract fun getAnalysisSessionByUseSiteKtModule(useSiteKtModule: KtModule): KaSession
    
        // The `analyse` functions affect binary compatibility as they are inlined with every `analyze` call. To avoid breaking binary
        // compatibility, their implementations should not be changed unless absolutely necessary. It should be possible to put most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_modinfo.txt

    # Test to ensure runtime/debug.ReadBuildInfo parses
    # the modinfo embedded in a binary by the go tool
    # when module is enabled.
    env GO111MODULE=on
    
    cd x
    go mod edit -require=rsc.io/quote@v1.5.2
    go mod edit -replace=rsc.io/quote@v1.5.2=rsc.io/quote@v1.0.0
    go mod tidy # populate go.sum
    
    # Build a binary and ensure that it can output its own debug info.
    # The debug info should be accessible before main starts (golang.org/issue/29628).
    go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

         */
        BinaryNamingScheme withRole(String role, boolean isMain);
    
        /**
         * Creates a copy of this scheme, replacing the binary type.
         */
        BinaryNamingScheme withBinaryType(String type);
    
        /**
         * Creates a copy of this scheme, specifying a binary name. This overrides the default binary name that would be generated from the other attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryTasksCollection.java

            return verb + StringUtils.capitalize(binary.getProjectScopedName());
        }
    
        @Override
        public String taskName(String verb, String object) {
            return verb + StringUtils.capitalize(binary.getProjectScopedName()) + StringUtils.capitalize(object);
        }
    
        @Override
        public Task getBuild() {
            return binary.getBuildTask();
        }
    
        @Override
        public Task getCheck() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/go/note_test.go

    				t.Log("skipping gold test")
    				break
    			}
    			t.Fatalf("building hello binary: %v", err)
    		}
    		id, err = buildid.ReadFile(tg.path("hello3.exe"))
    		if err != nil {
    			t.Fatalf("reading build ID from hello binary (linkmode=external -extldflags=-fuse-ld=gold): %v", err)
    		}
    		if id != buildID {
    			t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external -extldflags=-fuse-ld=gold)", id, buildID)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top