Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 114 for regular (0.28 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation.go

    		// if so, immediately use it
    		return legVer, nil
    	}
    	// not critical, may find another.
    	log.Debugf("did not find (or cannot use) iptables binary, error was %w: %+v", err, legVer)
    
    	// regular non-suffixed binary set is our last resort.
    	//
    	// If it's there, and rules do not already exist for a specific variant,
    	// we should use the default non-suffixed binary.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. hack/golangci-strict.yaml

          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/runtime/cgocheck.go

    		// space we can't easily get.
    		// Fortunately we have the type information.
    		systemstack(func() {
    			cgoCheckUsingType(typ, src, off, size)
    		})
    		return
    	}
    
    	// src must be in the regular heap.
    	tp := s.typePointersOf(uintptr(src), size)
    	for {
    		var addr uintptr
    		if tp, addr = tp.next(uintptr(src) + size); addr == 0 {
    			break
    		}
    		v := *(*unsafe.Pointer)(unsafe.Pointer(addr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    	// with names matching the regular expression.
    	// If addr is not zero, Symbols restricts the list to symbols
    	// containing that address.
    	Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
    
    	// Close closes the file, releasing associated resources.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/testsupport.go

    		return fmt.Errorf("error reading auxmetafiles file %q: %v", metafiles, err)
    	}
    
    	// Walk through each available aux meta-file. If we've already
    	// seen the package path in question during the walk of the
    	// "regular" meta-data file, then we can skip the package,
    	// otherwise construct a dummy pod with the single meta-data file
    	// (no counters) and invoke processPod on it.
    	for i := range mfc.ImportPaths {
    		p := mfc.ImportPaths[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    	// with names matching the regular expression.
    	// If addr is not zero, Symbols restricts the list to symbols
    	// containing that address.
    	Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
    
    	// Close closes the file, releasing associated resources.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray.go

    			} else {
    				for i := range result {
    					result[i] = int(matches.int64[i])
    				}
    			}
    		}
    	}
    	return
    }
    
    // FindAllIndex returns a sorted list of non-overlapping matches of the
    // regular expression r, where a match is a pair of indices specifying
    // the matched slice of x.Bytes(). If n < 0, all matches are returned
    // in successive order. Otherwise, at most n matches are returned and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/query-params-str-validations.md

    ## 검증 추가
    
    매개변수 `min_length` 또한 추가할 수 있습니다:
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial003.py!}
    ```
    
    ## 정규식 추가
    
    매개변수와 일치해야 하는 <abbr title="정규표현식(regular expression), regex 또는 regexp는 문자열 조회 패턴을 정의하는 문자들의 순열입니다">정규표현식</abbr>을 정의할 수 있습니다:
    
    ```Python hl_lines="10"
    {!../../../docs_src/query_params_str_validations/tutorial004.py!}
    ```
    
    이 특정 정규표현식은 전달 받은 매개변수 값을 검사합니다:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 11 13:48:31 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getFileName(): String
    
        /**
         * [FqName] of the package specified in the file
         *
         * The operation might be called regularly, so the [getFilePackageName] should work fast and avoid building the whole file text.
         *
         * It should be equal to the package name specified in the [buildFileText].
         *
         * @see KaResolveExtensionFile
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil.go

    	isSpecificMode := func(mode, targetMode os.FileMode) bool {
    		return mode&targetMode == targetMode
    	}
    
    	mode := info.Mode()
    	if mode.IsDir() {
    		return FileTypeDirectory, nil
    	} else if mode.IsRegular() {
    		return FileTypeFile, nil
    	} else if isSpecificMode(mode, os.ModeSocket) {
    		return FileTypeSocket, nil
    	} else if isSpecificMode(mode, os.ModeDevice) {
    		if isSpecificMode(mode, os.ModeCharDevice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top