Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for coconut (0.16 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"coat":                                 "\U0001f9e5",
    	"cockroach":                            "\U0001fab3",
    	"cocktail":                             "\U0001f378",
    	"coconut":                              "\U0001f965",
    	"cocos_islands":                        "\U0001f1e8\U0001f1e8",
    	"coffee":                               "\u2615",
    	"coffin":                               "\u26b0\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. internal/config/heal/heal.go

    	Bitrot string `json:"bitrotscan"`
    
    	// maximum sleep duration between objects to slow down heal operation.
    	Sleep   time.Duration `json:"sleep"`
    	IOCount int           `json:"iocount"`
    
    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    		// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
    		bitrotCycle time.Duration
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/exec.go

    		}
    		os.Exit(0)
    	}
    
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, syscall.SIGTERM)
    	go func() {
    		for range c {
    		}
    	}()
    
    	const goCount = 10
    	const execCount = 10
    	var wg sync.WaitGroup
    	wg.Add(goCount*execCount + goCount)
    	for i := 0; i < goCount; i++ {
    		go func() {
    			defer wg.Done()
    			for j := 0; j < execCount; j++ {
    				c2 := make(chan os.Signal, 1)
    				signal.Notify(c2, syscall.SIGUSR1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. internal/config/heal/help.go

    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         IOCount,
    			Description: `maximum IO requests allowed between objects to slow down heal operation` + defaultHelpPostfix(IOCount),
    			Optional:    true,
    			Type:        "int",
    		},
    		config.HelpKV{
    			Key:         DriveWorkers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    			case "\u00b2", "\u00b3", "\u00b9":
    				return true
    			}
    			return false
    		}
    	}
    
    	// Passing CONIN$ or CONOUT$ to CreateFile opens a console handle.
    	// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilea#consoles
    	//
    	// While CONIN$ and CONOUT$ aren't documented as being files,
    	// they behave the same as CON. For example, ./CONIN$ also opens the console input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/Escapers.java

            }
            // Combine the characters and/or escaped sequences into a single array.
            int hiCount = hiChars != null ? hiChars.length : 1;
            int loCount = loChars != null ? loChars.length : 1;
            char[] output = new char[hiCount + loCount];
            if (hiChars != null) {
              // TODO: Is this faster than System.arraycopy() for small arrays?
              for (int n = 0; n < hiChars.length; ++n) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/Escapers.java

            }
            // Combine the characters and/or escaped sequences into a single array.
            int hiCount = hiChars != null ? hiChars.length : 1;
            int loCount = loChars != null ? loChars.length : 1;
            char[] output = new char[hiCount + loCount];
            if (hiChars != null) {
              // TODO: Is this faster than System.arraycopy() for small arrays?
              for (int n = 0; n < hiChars.length; ++n) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/os/stat_test.go

    	}
    }
    
    func TestStatConsole(t *testing.T) {
    	if runtime.GOOS != "windows" {
    		t.Skip("skipping on non-Windows")
    	}
    	t.Parallel()
    	consoleNames := []string{
    		"CONIN$",
    		"CONOUT$",
    		"CON",
    	}
    	for _, name := range consoleNames {
    		params := testStatAndLstatParams{
    			isLink:     false,
    			statCheck:  testIsFile,
    			lstatCheck: testIsFile,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. hack/tools/go.mod

    	github.com/hashicorp/go-version v1.6.0 // indirect
    	github.com/hashicorp/hcl v1.0.0 // indirect
    	github.com/hexops/gotextdiff v1.0.3 // indirect
    	github.com/inconshreveable/mousetrap v1.1.0 // indirect
    	github.com/jgautheron/goconst v1.7.0 // indirect
    	github.com/jingyugao/rowserrcheck v1.1.1 // indirect
    	github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
    	github.com/jjti/go-spancheck v0.5.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      }
    
      auto shape = mlir::cast<ShapedType>(tensor.getType());
      SmallVector<int64_t> non_output_indices;
      for (int64_t i : llvm::seq<int64_t>(0, shape.getRank())) {
        if (absl::c_count(output_dims, i) == 0) {
          non_output_indices.push_back(i);
        }
      }
    
      auto reduction_indices_value =
          Create1DConstValue<int64_t>(builder, loc, non_output_indices);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top