Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for uasdf (0.05 sec)

  1. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemDefinitionReport.groovy

            def pd2 = createProblemDefinition("label2", Severity.ERROR, asdfManual, ImmutableList.of())
    
            then:
            pd1 != pd2
        }
    
        def static asdfManual = Documentation.userManual("asdf")
    
    
        ProblemDefinition createProblemDefinition(
            String label = "label",
            Severity severity = Severity.ERROR,
            Documentation documentation = asdfManual,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/strconv/atob_test.go

    package strconv_test
    
    import (
    	"bytes"
    	. "strconv"
    	"testing"
    )
    
    type atobTest struct {
    	in  string
    	out bool
    	err error
    }
    
    var atobtests = []atobTest{
    	{"", false, ErrSyntax},
    	{"asdf", false, ErrSyntax},
    	{"0", false, nil},
    	{"f", false, nil},
    	{"F", false, nil},
    	{"FALSE", false, nil},
    	{"false", false, nil},
    	{"False", false, nil},
    	{"1", true, nil},
    	{"t", true, nil},
    	{"T", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 18:08:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainConfiguration.java

            String asdfEnvVar = environment.get("ASDF_DATA_DIR");
            if (asdfEnvVar != null) {
                return new File(asdfEnvVar);
            }
            return new File(systemProperties.getUserHome(), ".asdf");
        }
    
        @Override
        public File getIntelliJdkDirectory() {
            return intellijInstallationDirectory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    		errorExpressions map[string]string
    		envType          environment.Type
    	}{
    		{
    			name: "invalid syntax",
    			errorExpressions: map[string]string{
    				"1 < 'asdf'":          "found no matching overload for '_<_' applied to '(int, string)",
    				"'asdf'.contains('x'": "Syntax error: missing ')' at",
    			},
    		},
    		{
    			name:        "with params",
    			expressions: []string{"object.foo < params.x"},
    			hasParams:   true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ProviderBackedToolchainConfiguration.java

            if (asdfEnvVar != null) {
                return new File(asdfEnvVar);
            }
            return new File(systemProperties.getUserHome(), ".asdf");
        }
    
        @Override
        public File getIntelliJdkDirectory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      std::unique_ptr<WritableFile> new_file;
      Status status = env_->NewWritableFile(filepath, &new_file);
      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      const std::string test_data("asdf");
      status = new_file->Append(test_data);
      if (!status.ok()) GTEST_SKIP() << "Append() not supported: " << status;
      status = new_file->Flush();
      if (!status.ok()) GTEST_SKIP() << "Flush() not supported: " << status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

        }
    
        def "parses entries with agent"() {
            def contextString = "DefaultDaemonContext[" +
                "uid=40b63fc1-2506-4fa8-bf48-1bfbfc6a457f," +
                "javaHome=/home/mlopatkin/.asdf/installs/java/temurin-11.0.16+101," +
                "javaVersion=11," +
                "daemonRegistryDir=/home/mlopatkin/gradle/local/.gradle/daemon," +
                "pid=1120028," +
                "idleTimeout=10800000," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            failureHasCause("Could not determine Java version from '${invalidVersion}'")
    
            where:
            invalidVersion << ["0", "-10", 'asdf']
        }
    
        def "When execute updateDaemonJvm with unsupported Java version Then fails with expected exception message"() {
            when:
            fails "updateDaemonJvm", "--jvm-version=7"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/compress/lzw/writer_test.go

    						t.Errorf("bytes written were not same")
    					}
    				})
    			}
    		})
    	}
    }
    
    func TestWriterReturnValues(t *testing.T) {
    	w := NewWriter(io.Discard, LSB, 8)
    	n, err := w.Write([]byte("asdf"))
    	if n != 4 || err != nil {
    		t.Errorf("got %d, %v, want 4, nil", n, err)
    	}
    }
    
    func TestSmallLitWidth(t *testing.T) {
    	w := NewWriter(io.Discard, LSB, 2)
    	if _, err := w.Write([]byte{0x03}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_cache_inputs.txt

    # should invalidate cached test results.
    env TESTKEY=x
    go test testcache -run=TestLookupEnv
    go test testcache -run=TestLookupEnv
    stdout '\(cached\)'
    
    # GODEBUG is always read
    env GODEBUG=asdf=1
    go test testcache -run=TestLookupEnv
    ! stdout '\(cached\)'
    go test testcache -run=TestLookupEnv
    stdout '\(cached\)'
    env GODEBUG=
    
    env TESTKEY=y
    go test testcache -run=TestLookupEnv
    ! stdout '\(cached\)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top