Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for globAbs (0.14 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    		var glob string
    		if i := strings.Index(globs, ","); i >= 0 {
    			glob, globs = globs[:i], globs[i+1:]
    		} else {
    			glob, globs = globs, ""
    		}
    		glob = strings.TrimSuffix(glob, "/")
    		if glob == "" {
    			continue
    		}
    
    		// A glob with N+1 path elements (N slashes) needs to be matched
    		// against the first N+1 path elements of target,
    		// which end just before the N+1'th slash.
    		n := strings.Count(glob, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/runtime/mbarrier.go

    //
    // Global writes:
    //
    // The Go garbage collector requires write barriers when heap pointers
    // are stored in globals. Many garbage collectors ignore writes to
    // globals and instead pick up global -> heap pointers during
    // termination. This increases pause time, so we instead rely on write
    // barriers for writes to globals so that we don't have to rescan
    // global during mark termination.
    //
    //
    // Publication ordering:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/lower_globals_to_ml_program.mlir

    // RUN: tf-opt %s --allow-unregistered-dialect --tf-saved-model-lower-globals-to-mlprogram --split-input-file | FileCheck %s
    
    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      // CHECK: ml_program.global private mutable [[V:@.+]](dense<1.000000e+00> : tensor<1xf32>) : tensor<?xf32>
      // CHECK: func.func @f
      // CHECK: [[T:%.+]] = ml_program.global_load [[V]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 21:57:26 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/cpu-profile.go

    		accum = f(accum)
    	}
    	*y = accum
    }
    
    var (
    	salt1 = 0
    )
    
    // The actual CPU hogging function.
    // Must not call other functions nor access heap/globals in the loop,
    // otherwise under race detector the samples will be in the race runtime.
    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/wasm/a.out.go

    	ACALLNORESUME
    
    	ARETUNWIND
    
    	AMOVB
    	AMOVH
    	AMOVW
    	AMOVD
    
    	AWORD
    	ALAST
    )
    
    const (
    	REG_NONE = 0
    )
    
    const (
    	// globals
    	REG_SP = obj.RBaseWasm + iota // SP is currently 32-bit, until 64-bit memory operations are available
    	REG_CTXT
    	REG_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "kind-of": "^6.0.2",
            "which": "^1.3.1"
          },
          "engines": {
            "node": ">=6"
          }
        },
        "node_modules/globals": {
          "version": "13.20.0",
          "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
          "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    	cmd := exec.Command("go", "mod", "download", "-modcacherw", "rsc.io/quote@v1.5.2")
    	cmd.Stderr = os.Stderr
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    	return cmd.Run()
    }
    
    // readCache repeatedly globs for go.mod files in the given cache, then opens
    // those files for reading. When the done chan is closed, readCache closes
    // files and returns.
    func readCache(gopath string, done <-chan struct{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. src/mime/type_unix.go

    			// Not a bare extension, but a glob. Ignore for now:
    			// - we do not have an implementation for this glob
    			//   syntax (translation to path/filepath.Match could
    			//   be possible)
    			// - support for globs with weight ordering would have
    			//   performance impact to all lookups to support the
    			//   rarely seen glob entries
    			// - trying to match glob metacharacters literally is
    			//   not useful
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/config/security/security.go

    		}
    	}
    	return nil
    }
    
    func CheckValidPathTemplate(key string, paths []string) error {
    	for _, path := range paths {
    		containsPathTemplate := ContainsPathTemplate(path)
    		globs := strings.Split(path, "/")
    		for _, glob := range globs {
    			// If glob is a supported path template, skip the check.
    			if glob == MatchAnyTemplate || glob == MatchOneTemplate {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi_util_test.go

    }
    
    func fakeOsStat(devicePath string) (fi os.FileInfo, err error) {
    	var cmd os.FileInfo
    	return cmd, nil
    }
    
    func fakeFilepathGlob(devicePath string) (globs []string, err error) {
    	return []string{devicePath}, nil
    }
    
    func fakeFilepathGlob2(devicePath string) (globs []string, err error) {
    	return []string{
    		"/dev/disk/by-path/pci-0000:00:00.0-ip-127.0.0.1:3260-iqn.2014-12.com.example:test.tgt00-lun-0",
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top