Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for fabs (0.04 sec)

  1. cmd/post-policy-fan-out.go

    type fanOutOptions struct {
    	Kind     crypto.Type
    	KeyID    string
    	Key      []byte
    	KmsCtx   kms.Context
    	Checksum *hash.Checksum
    	MD5Hex   string
    }
    
    // fanOutPutObject takes an input source reader and fans out multiple PUT operations
    // based on the incoming fan-out request, a context cancellation by the caller
    // would ensure all fan-out operations are canceled.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    ## FAQs
    
    ### How does ``MinIO`` manage dependencies?
    
    ``MinIO`` uses `go mod` to manage its dependencies.
    
    - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file.
    
    To remove a dependency
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. docs/fr/docs/help-fastapi.md

        * Dites-moi comment vous utilisez FastAPI (j'adore entendre ça).
        * Entendre quand je fais des annonces ou que je lance de nouveaux outils.
    * <a href="https://www.linkedin.com/in/tiangolo/" class="external-link" target="_blank">Vous connectez à moi sur **LinkedIn**</a>.
        * Etre notifié quand je fais des annonces ou que je lance de nouveaux outils (bien que j'utilise plus souvent Twitter 🤷‍♂).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/websockets.md

    === "Python 3.8+"
    
        ```Python hl_lines="81-83"
        {!> ../../../docs_src/websockets/tutorial003.py!}
        ```
    
    To try it out:
    
    * Open the app with several browser tabs.
    * Write messages from them.
    * Then close one of the tabs.
    
    That will raise the `WebSocketDisconnect` exception, and all the other clients will receive a message like:
    
    ```
    Client #1596980209979 left the chat
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. .space/safe-merge.json

    {
      "version": "1.0",
      "builds": [
        {
          "teamcity": {
            "configuration": "Kotlin_KotlinDev_SafeMerge",
            "url": "https://buildserver.labs.intellij.net",
            "token": "${space-safe-merge-kt}",
            "ssl-keystore": "BuildServer client"
          }
        }
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 27 13:43:47 UTC 2023
    - 280 bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/testFixtures/groovy/org/gradle/internal/snapshot/TestSnapshotFixture.groovy

                FilenameUtils.separatorsToSystem(absolutePath),
                FilenameUtils.getName(absolutePath),
                TestHashCodes.hashCodeFrom(hashCode ?: pseudoRandom.nextLong()),
                file(abs(pseudoRandom.nextLong()), abs(pseudoRandom.nextLong()), accessType))
        }
    
        FileSystemLocationSnapshot missing(String absolutePath, FileMetadata.AccessType accessType = DIRECT) {
            new MissingFileSnapshot(
                absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial005.py

                            }
                        },
                        "summary": "Read Items",
                        "operationId": "read_items_items__get",
                        "x-aperture-labs-portal": "blue",
                    }
                }
            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. internal/s3select/json/record.go

    	// See golang.org/issue/6384 and golang.org/issue/14135.
    	// Like fmt %g, but the exponent cutoffs are different
    	// and exponents themselves are not padded to two digits.
    	abs := math.Abs(f)
    	fmt := byte('f')
    	if abs != 0 {
    		if abs < 1e-6 || abs >= 1e21 {
    			fmt = 'e'
    		}
    	}
    	dst = strconv.AppendFloat(dst, f, fmt, -1, 64)
    	if fmt == 'e' {
    		// clean up e-09 to e-9
    		n := len(dst)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  9. src/text/scanner/example_test.go

    da	db	dc	dd`
    
    	var (
    		col, row int
    		s        scanner.Scanner
    		tsv      [4][4]string // large enough for example above
    	)
    	s.Init(strings.NewReader(src))
    	s.Whitespace ^= 1<<'\t' | 1<<'\n' // don't skip tabs and new lines
    
    	for tok := s.Scan(); tok != scanner.EOF; tok = s.Scan() {
    		switch tok {
    		case '\n':
    			row++
    			col = 0
    		case '\t':
    			col++
    		default:
    			tsv[row][col] = s.TokenText()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/metrics/metrics_test.go

    		t.Errorf("unexpected count: %v", c)
    	}
    	if math.Abs(s-2.0) > 1e-7 {
    		t.Fatalf("incorrect sum: %v", s)
    	}
    }
    
    func TestObserveEvaluation(t *testing.T) {
    	defer legacyregistry.Reset()
    	Metrics.ObserveEvaluation(2 * time.Second)
    	c, s := gatherHistogram(t, "apiserver_cel_evaluation_duration_seconds")
    	if c != 1 {
    		t.Errorf("unexpected count: %v", c)
    	}
    	if math.Abs(s-2.0) > 1e-7 {
    		t.Fatalf("incorrect sum: %v", s)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top