Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,692 for miny (0.05 sec)

  1. pkg/registry/core/pod/rest/metrics.go

    			StabilityLevel:    metrics.ALPHA,
    			DeprecatedVersion: "1.27.0",
    		},
    		[]string{"usage"},
    	)
    
    	// podLogsTLSFailure counts how many attempts to get pod logs fail on tls verification
    	podLogsTLSFailure = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "backend_tls_failure_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. releasenotes/notes/no-1p-jwt.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
      - |
        **Removed** the `first-party-jwt` legacy option for `values.global.jwtPolicy`. Support for the more secure `third-party-jwt`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 02:55:50 UTC 2024
    - 288 bytes
    - Viewed (0)
  3. test/fixedbugs/bug122.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	// should allow at most 2 sizes
    	a := make([]int, 10, 20, 30, 40); // ERROR "too many|expects 2 or 3 arguments; found 5"
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 334 bytes
    - Viewed (0)
  4. test/fixedbugs/issue4452.go

    // errorcheck
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4452. Used to print many errors, now just one.
    
    package main
    
    func main() {
    	_ = [...]int(4) // ERROR "\[\.\.\.\].*outside of array literal|invalid use of \[\.\.\.\] array"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 359 bytes
    - Viewed (0)
  5. src/encoding/binary/example_test.go

    	r := bytes.NewReader(b)
    
    	var data struct {
    		PI   float64
    		Uate uint8
    		Mine [3]byte
    		Too  uint16
    	}
    
    	if err := binary.Read(r, binary.LittleEndian, &data); err != nil {
    		fmt.Println("binary.Read failed:", err)
    	}
    
    	fmt.Println(data.PI)
    	fmt.Println(data.Uate)
    	fmt.Printf("% x\n", data.Mine)
    	fmt.Println(data.Too)
    	// Output:
    	// 3.141592653589793
    	// 255
    	// 01 02 03
    	// 61374
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

        }
    
        @Test
        fun `can parse many symbols`() {
            val parser = zeroOrMore(combinator.symbol("foo"))
            assertSuccess(
                parser("foo"),
                listOf(Unit)
            )
            assertSuccess(
                parser("foo foo"),
                listOf(Unit, Unit)
            )
        }
    
        @Test
        fun `can parse many symbols before another symbol`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    - **Exec** - `Exec` is useful to execute arbitrary O/S commands.
    - **Zip** - `Zip` is useful to bundle files.
    
    With many more documented in the Kotlin and Groovy DSLs.
    
    == Step 3. Understanding Dependencies Between Tasks
    Many times, a task requires another task to run first.
    If task B uses the output of task A, then task A must complete before task B begins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/query-params-str-validations.md

    ...makes the parameter optional, with a default value of `None`, the same as:
    
    ```Python
    q: str | None = None
    ```
    
    But it declares it explicitly as being a query parameter.
    
    !!! info
        Keep in mind that the most important part to make a parameter optional is the part:
    
        ```Python
        = None
        ```
    
        or the:
    
        ```Python
        = Query(default=None)
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. overview.html

    types (such as multimap and multiset), immutable collections, a graph library,
    and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    <p>For more information, see <a href="https://guava.dev/">guava.dev</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 429 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    2. *Lifecycle tasks* are tasks with no actions attached: `assemble`, `build`.
    
    Typically, a *lifecycle* tasks depends on many *actionable* tasks, and is used to execute many tasks at once.
    
    [[sec:task_registration]]
    == Task registration and action
    
    Let's take a look at a simple "Hello World" task in a build script:
    
    ====
    include::sample[dir="snippets/tutorial/hello/kotlin", files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top