Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for regular (0.15 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    		expect echo.Instances
    	}{
    		"SimplePodServiceAndAllSpecial": {
    			filter: echotest.SingleSimplePodServiceAndAllSpecial(),
    			expect: echo.Instances{
    				// Keep pods for one regular service per namespace.
    				a1, a2, a1Ns2, a2Ns2,
    				// keep the special cases
    				vm1, vm2,
    				headless1, headless2,
    				naked1, naked2,
    				external1, external2,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        /**
         * Returns a new {@link Provider} from the value of this provider transformed using the given function.
         *
         * <p>
         * While very similar in functionality to the regular {@link #map(Transformer) map} operation, this method
         * offers a convenient way of connecting together task inputs and outputs. (For a deeper understanding of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/trace/gen.go

    		})
    	}
    }
    
    // emitRegion emits goroutine-based slice events to the UI. The caller
    // must be emitting for a goroutine-oriented trace.
    //
    // TODO(mknyszek): Make regions part of the regular generator loop and
    // treat them like ranges so that we can emit regions in traces oriented
    // by proc or thread.
    func emitRegion(ctx *traceContext, region *trace.UserRegionSummary) {
    	if region.Name == "" {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/runtime/runtime.go

    // in aggregate. But because we compute this rate lazily, there's a pretty good chance a decent
    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    //
    // TODO(mknyszek): This doesn't account for things like CPU frequency scaling. Consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                )
            """.trimIndent()
    
            results.assert(expected)
        }
    
        @Test
        fun `parse infix function call with regular arguments`() {
            val results = parse(
                """
                f("a") g("b")
                """.trimIndent()
            )
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/utils.go

    	timeElapsed := int64(now.Sub(t1).Seconds())
    	numberOfMissedSchedules := (timeElapsed / timeBetweenTwoSchedules) + 1
    
    	var mostRecentTime time.Time
    	// to get the most recent time accurate for regular schedules and the ones
    	// specified with @every form, we first need to calculate the potential earliest
    	// time by multiplying the initial number of missed schedules by its interval,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/kubelet/container/helpers.go

    			continue
    		}
    		ports = append(ports, pm)
    		names[name] = struct{}{}
    	}
    	return
    }
    
    // HasAnyRegularContainerStarted returns true if any regular container has
    // started, which indicates all init containers have been initialized.
    func HasAnyRegularContainerStarted(spec *v1.PodSpec, statuses []v1.ContainerStatus) bool {
    	if len(statuses) == 0 {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519.go

    	}
    }
    
    // Options can be used with [PrivateKey.Sign] or [VerifyWithOptions]
    // to select Ed25519 variants.
    type Options struct {
    	// Hash can be zero for regular Ed25519, or crypto.SHA512 for Ed25519ph.
    	Hash crypto.Hash
    
    	// Context, if not empty, selects Ed25519ctx or provides the context string
    	// for Ed25519ph. It can be at most 255 bytes in length.
    	Context string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    	CGO_CFLAGS
    		Flags that cgo will pass to the compiler when compiling
    		C code.
    	CGO_CFLAGS_ALLOW
    		A regular expression specifying additional flags to allow
    		to appear in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CFLAGS_DISALLOW
    		A regular expression specifying flags that must be disallowed
    		from appearing in #cgo CFLAGS source code directives.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    	}
    	if m := sfi.Mode(); m&fs.ModeIrregular == 0 {
    		// A reparse point is not a regular file, but we don't have a more appropriate
    		// ModeType bit for it, so it should be marked as irregular.
    		t.Errorf("%q should not be a regular file (mode=0x%x)", pythonPath, uint32(m))
    	}
    
    	p, err := exec.LookPath(pythonPath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top