Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 292 for regular (0.16 sec)

  1. hack/logcheck.conf

    # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
    #
    # By default, structured logging call parameters are checked, but usage of
    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * <p>
         * This method does not access the file system.
         * It is agnostic to whether a given file object represents a regular file, directory or does not exist.
         * That is, the term “file” is used in the java.io.File sense, not the regular file sense.
         *
         * @param files the site of files to find the encompassing roots of
         * @return the encompassing roots
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/CrossBuildSessionState.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.Closeable;
    import java.util.List;
    
    /**
     * Services to be shared across build sessions.
     * <p>
     * Generally, one regular Gradle invocation is conceptually a session.
     * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    		},
    		{
    			name:        "TestCase09: restartable init container + regular container",
    			pod:         testPod9,
    			expectedCPU: 2,
    		},
    		{
    			name:        "TestCase09: multiple restartable init containers",
    			pod:         testPod10,
    			expectedCPU: 7,
    		},
    		{
    			name:        "TestCase11: multiple restartable and regular init containers",
    			pod:         testPod11,
    			expectedCPU: 8,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
         * The returned JVM class name is of fully qualified name format, e.g., foo.bar.Baz.Companion
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/objdump/main.go

    // Usage:
    //
    //	go tool objdump [-s symregexp] binary
    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params-str-validations.md

        ```Python hl_lines="10"
        {!> ../../../docs_src/query_params_str_validations/tutorial003.py!}
        ```
    
    ## Add regular expressions
    
    You can define a <abbr title="A regular expression, regex or regexp is a sequence of characters that define a search pattern for strings.">regular expression</abbr> `pattern` that the parameter should match:
    
    === "Python 3.10+"
    
        ```Python hl_lines="11"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/kubelet/util/util_windows.go

    	// So we just construct the path from scratch.
    	// Format: \\ServerName\pipe\PipeName
    	// Where where ServerName is either the name of a remote computer or a period, to specify the local computer.
    	// We only consider PipeName as regular windows path, while the pipe path components are fixed, hence we use constants.
    	serverPart := `\\.`
    	pipePart := "pipe"
    	pipeName := "kubelet-" + podResourcesDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                        ?.takeIf { conventionValue ->
                            // Prevent convention value to be assigned to a field of incompatible type
                            // A common cause is a regular field type being promoted to a Property/Provider type.
                            conventionValue.isAssignableTo(field.type)
                        } ?: fieldValue
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    			var st syscall.Stat_t
    			err := ignoringEINTR(func() error {
    				return syscall.Fstat(fd, &st)
    			})
    			typ := st.Mode & syscall.S_IFMT
    			// Don't try to use kqueue with regular files on *BSDs.
    			// On FreeBSD a regular file is always
    			// reported as ready for writing.
    			// On Dragonfly, NetBSD and OpenBSD the fd is signaled
    			// only once as ready (both read and write).
    			// Issue 19093.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top