Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sunny (0.17 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

            assert System.getProperty("java.vendor") != "hollywood"
            assert System.getProperty("java.vendor") != null
            assert System.getProperty("sun.sunny") == null
        }
    }
            """
    
            expect:
            executer.withBuildJvmOpts("-Djava.vendor=hollywood", "-Dsun.sunny=california").withTasks("verify").run()
        }
    
        def "other client JVM system properties are carried over to daemon JVM"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"sun_with_face":                        "\U0001f31e",
    	"sunflower":                            "\U0001f33b",
    	"sunglasses":                           "\U0001f60e",
    	"sunny":                                "\u2600\ufe0f",
    	"sunrise":                              "\U0001f305",
    	"sunrise_over_mountains":               "\U0001f304",
    	"superhero":                            "\U0001f9b8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    [!GOEXPERIMENT:coverageredesign] skip
    
    go test -short -cover -covermode=atomic -coverpkg=coverdep/p1 coverdep
    
    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec.groovy

            when:
            run("test")
    
            then:
            noExceptionThrown()
        }
    
        // This is named funny to keep the path to the project
        // under Windows's limits.  This checks that we can use
        // ServletCategory as an extension class when compiling
        // Groovy code.
        @Issue("GRADLE-3235")
        def gradle3235() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

        EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        EXPECT_EQ("bunny", string(static_cast<const char*>(val.get()), 5));
        TF_DeleteStatus(status);
        return static_cast<void*>(s);
      };
    
      AttrValue v;
      v.set_s("bunny");
      CreateAndCallKernelWithAttr(my_create_func, "TestKernelAttrString", v);
    }
    
    TEST_F(TestKernelAttr, StringList) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # non-standard host objects.
    #
    # As of 1.21 we continue to use internal linking for programs whose
    # CGO use comes only from stdlib packages in the absence of any flag
    # funny business, however if the Go command sees flags that may be suspicious,
    # it signals the Go linker to invoke the external linker.
    
    # The next few tests run builds passing "-n" to the Go command, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/log/slog/json_handler.go

    		s.appendString(v.str())
    	case KindInt64:
    		*s.buf = strconv.AppendInt(*s.buf, v.Int64(), 10)
    	case KindUint64:
    		*s.buf = strconv.AppendUint(*s.buf, v.Uint64(), 10)
    	case KindFloat64:
    		// json.Marshal is funny about floats; it doesn't
    		// always match strconv.AppendFloat. So just call it.
    		// That's expensive, but floats are rare.
    		if err := appendJSONMarshal(s.buf, v.Float64()); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. cluster/common.sh

      if [[ -n "${KUBE_CONTEXT:-}" ]]; then
        get-kubeconfig-basicauth
      fi
    
      if [[ -z "${KUBE_USER:-}" || -z "${KUBE_PASSWORD:-}" ]]; then
        gen-kube-basicauth
      fi
    
      # Make sure they don't contain any funny characters.
      if ! [[ "${KUBE_USER}" =~ ^[-._@a-zA-Z0-9]+$ ]]; then
        echo "Bad KUBE_USER string."
        exit 1
      fi
      if ! [[ "${KUBE_PASSWORD}" =~ ^[-._@#%/a-zA-Z0-9]+$ ]]; then
        echo "Bad KUBE_PASSWORD string."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    func rawURLRef(ref string) string {
    	return rawRef(urlRef(ref))
    }
    
    const encodeStd = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
    
    // A nonstandard encoding with a funny padding character, for testing
    var funnyEncoding = NewEncoding(encodeStd).WithPadding(rune('@'))
    
    func funnyRef(ref string) string {
    	return strings.ReplaceAll(ref, "=", "@")
    }
    
    type encodingTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      TF_SetAttrString(desc, "v", "bunny", 5);
    
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", -1, TF_ATTR_STRING, 5);
      std::unique_ptr<char[]> value(new char[5]);
    
      TF_OperationGetAttrString(oper, "v", value.get(), 5, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ("bunny", string(static_cast<const char*>(value.get()), 5));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top