Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 497 for compiling (0.16 sec)

  1. src/regexp/all_test.go

    	re, err := Compile(expr)
    	if error == "" && err != nil {
    		t.Error("compiling `", expr, "`; unexpected error: ", err.Error())
    	}
    	if error != "" && err == nil {
    		t.Error("compiling `", expr, "`; missing error")
    	} else if error != "" && !strings.Contains(err.Error(), error) {
    		t.Error("compiling `", expr, "`; wrong error: ", err.Error(), "; want ", error)
    	}
    	return re
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Extends platform-base with base types and interfaces specific to the Java Virtual Machine, including tasks for obtaining a JDK via toolchains, and for compiling and launching Java applications."""
    
    errorprone {
        disabledChecks.addAll(
            "StringCharset", // 1 occurrences
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/PatternCompiler.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.errorprone.annotations.RestrictedApi;
    
    /**
     * Pluggable interface for compiling a regex pattern. By default this package uses the {@code
     * java.util.regex} library, but an alternate implementation can be supplied using the {@link
     * java.util.ServiceLoader} mechanism.
     */
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/PatternCompiler.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.errorprone.annotations.RestrictedApi;
    
    /**
     * Pluggable interface for compiling a regex pattern. By default this package uses the {@code
     * java.util.regex} library, but an alternate implementation can be supplied using the {@link
     * java.util.ServiceLoader} mechanism.
     */
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/CommandLineJavaCompilerIntegrationTest.groovy

                    forkOptions.javaHome = file("${TextUtil.normaliseFileSeparators(Jvm.current().javaHome.toString())}")
                }
            """
        }
    
        @Override
        String logStatement() {
            "Compiling with Java command line compiler"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_compiler_client.h

      // `executable` using the XlaCompiler.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::LocalExecutable& executable) override;
    
      // Returns a serialized AOT result obtained by compiling `result` into an AOT
      // result.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_WEEK
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    /**
     * Performance tests aimed at comparing the performance of Gradle for compiling and executing test suites, making
     * sure we are always faster than Maven.
     */
    @RunFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

            succeeds 'a:compileJava'
    
            then:
            executedAndNotSkipped ':b:compileJava', ':b:classes', ':b:jar'
            skipped ':b:processResources'
        }
    
        def "uses the API of a library when compiling production code against it using the #configuration configuration"() {
            given:
            subproject('a') {
                'build.gradle'("""
                    apply plugin: 'java'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile_test.go

    			})
    			if len(tc.expectedError) > 0 && (err == nil || !strings.Contains(err.Error(), tc.expectedError)) {
    				t.Fatalf("expected error: %s compiling expression %s, got: %v", tc.expectedError, tc.expression, err)
    			}
    			if len(tc.expectedError) == 0 && err != nil {
    				t.Fatalf("unexpected error %v compiling expression %s", err, tc.expression)
    			}
    		})
    	}
    }
    
    func TestBuildRequestType(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins, tasks and compiler infrastructure for compiling/linking code"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "EqualsUnsafeCast", // 1 occurrences
            "GetClassOnClass", // 1 occurrences
            "HidingField", // 1 occurrences
            "ImmutableEnumChecker", // 2 occurrences
            "ReferenceEquality", // 2 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top