Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 216 for regular (0.26 sec)

  1. 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)
  2. 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)
  3. src/archive/tar/common.go

    		}
    	}
    	if len(ss) == 0 {
    		return prefix
    	}
    	return fmt.Sprintf("%s: %v", prefix, strings.Join(ss, "; and "))
    }
    
    // Type flags for Header.Typeflag.
    const (
    	// Type '0' indicates a regular file.
    	TypeReg = '0'
    
    	// Deprecated: Use TypeReg instead.
    	TypeRegA = '\x00'
    
    	// Type '1' to '6' are header-only flags and may not have a data body.
    	TypeLink    = '1' // Hard link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/modcmd/vendor.go

    			// Leave it out.
    			return false
    		}
    		return true
    	}
    
    	// We don't know anything about this file, so optimistically assume that it is
    	// needed.
    	return true
    }
    
    // copyDir copies all regular files satisfying match(info) from src to dst.
    func copyDir(dst, src string, match func(dir string, info fs.DirEntry) bool, copiedFiles map[string]bool) {
    	files, err := os.ReadDir(src)
    	if err != nil {
    		base.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/syntax/parser_test.go

    	verify = flag.Bool("verify", false, "verify idempotent printing")
    	src_   = flag.String("src", "parser.go", "source file to parse")
    	skip   = flag.String("skip", "", "files matching this regular expression are skipped by TestStdLib")
    )
    
    func TestParse(t *testing.T) {
    	ParseFile(*src_, func(err error) { t.Error(err) }, nil, 0)
    }
    
    func TestVerify(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags.go

    		"Comma separated list of labels for selecting tests to run (e.g. 'foo,+bar-baz').")
    
    	flag.Var(&settingsFromCommandLine.SkipString, "istio.test.skip",
    		"Skip tests matching the regular expression. This follows the semantics of -test.run.")
    
    	flag.Var(&settingsFromCommandLine.SkipWorkloadClasses, "istio.test.skipWorkloads",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top