Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for sunny (0.04 sec)

  1. 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)
  2. src/cmd/go/internal/web/api.go

    	if !utf8.ValidString(s) {
    		return "" // Don't try to recover non-UTF-8 error messages.
    	}
    	for _, r := range s {
    		if !unicode.IsGraphic(r) && !unicode.IsSpace(r) {
    			return "" // Don't let the server do any funny business with the user's terminal.
    		}
    	}
    
    	var detail strings.Builder
    	for i, line := range strings.Split(s, "\n") {
    		if strings.TrimSpace(line) == "" {
    			break // Stop at the first blank line.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modfetch/sumdb.go

    	}
    	vkey, err := note.NewVerifier(key[0])
    	if err != nil {
    		return "", nil, fmt.Errorf("invalid GOSUMDB: %v", err)
    	}
    	name := vkey.Name()
    
    	// No funny business in the database name.
    	direct, err := url.Parse("https://" + name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. guava-tests/test/com/google/common/hash/HashTestUtils.java

              hashFunction.newHasher().putString(string, charset).hash());
        }
      }
    
      /**
       * This verifies that putUnencodedChars(String) and hashUnencodedChars(String) are equivalent,
       * even for funny strings composed by (possibly unmatched, and mostly illegal) surrogate
       * characters. (But doesn't test that they do the right thing - just their consistency).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. src/text/template/parse/parse_test.go

    	{"0i", true, true, true, true, 0, 0, 0, 0},
    	{"-1.2+0i", false, false, true, true, 0, 0, -1.2, -1.2},
    	{"-12+0i", true, false, true, true, -12, 0, -12, -12},
    	{"13+0i", true, true, true, true, 13, 13, 13, 13},
    	// funny bases
    	{"0123", true, true, true, false, 0123, 0123, 0123, 0},
    	{"-0x0", true, true, true, false, 0, 0, 0, 0},
    	{"0xdeadbeef", true, true, true, false, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0},
    	// character constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/lunny/dingtalk_webhook,v0.0.0-20171025031554-e3534c89ef96,h1:uNwtsDp7ci48vBTTxDuwcoTXz4lwtDTe7TjCQ0noaWY=,b94d4c7cacca0c289b3fbbeae6cc9e66f2eec4a3210fbbfd208316337ff2f1e3
    github.com/lunny/levelqueue,v0.0.0-20190217115915-02b525a4418e,h1:GSprKUrG9wNgwQgROvjPGXmcZrg4OLslOuZGB0uJjx8=,8f62ece23811c3c2be0d1c8d10057ab564641b2f73dc5a9910dd5f8462954f19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
Back to top