Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for mod$ (0.06 sec)

  1. src/testing/testing.go

    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    // values are "set", "count", or "atomic". The return value will be
    // empty if test coverage is not enabled.
    func CoverMode() string {
    	if goexperiment.CoverageRedesign {
    		return cover2.mode
    	}
    	return cover.Mode
    }
    
    // Verbose reports whether the -test.v flag is set.
    func Verbose() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	--table-color: #f7f8f7;
    	--box-shadow-color: rgba(0, 0, 0, .15);
    	--top-header-color: #fff;
    	--footer-white-color: #fff;
    	--footer-text-color: #fff;
    	--quoteblock-color: #7a2518;
    	--menu-burger-color: #fff;
    
    	.dark-mode {
    		--admonition-background: #2a2929;
    		--black-color: #fff;
    		--white-color: #121212;
    		--text-color: #aaa;
    		--title-color: #fff;
    		--header-color: rgba(255, 255, 255, 0.85);
    		--footer-color: #242526;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    	indent []byte // tracing support
    }
    
    func (p *parser) init(file *PosBase, r io.Reader, errh ErrorHandler, pragh PragmaHandler, mode Mode) {
    	p.top = true
    	p.file = file
    	p.errh = errh
    	p.mode = mode
    	p.pragh = pragh
    	p.scanner.init(
    		r,
    		// Error and directive handler for scanner.
    		// Because the (line, col) positions passed to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	pkg    string
    	pn     string
    	file   string
    	off    int64
    	length int64
    }
    
    var hostobj []Hostobj
    
    // These packages can use internal linking mode.
    // Others trigger external mode.
    var internalpkg = []string{
    	"crypto/internal/boring",
    	"crypto/internal/boring/syso",
    	"crypto/x509",
    	"net",
    	"os/user",
    	"runtime/cgo",
    	"runtime/race",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @Override
        public SmbRandomAccessFile openRandomAccess ( String mode ) throws SmbException {
            return new SmbRandomAccessFile(this, mode);
        }
    
    
        @Override
        public SmbRandomAccessFile openRandomAccess ( String mode, int sharing ) throws SmbException {
            return new SmbRandomAccessFile(this, mode, sharing, false);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. hack/local-up-cluster.sh

          authorizer_args+=("--authorization-config=${AUTHORIZATION_CONFIG}")
        else
          if [[ -n "${AUTHORIZATION_MODE:-Node,RBAC}" ]]; then
            authorizer_args+=("--authorization-mode=${AUTHORIZATION_MODE:-Node,RBAC}")
          fi
          authorizer_args+=(
            "--authorization-webhook-config-file=${AUTHORIZATION_WEBHOOK_CONFIG_FILE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.tempFile("src/@x/y/y.go", "package y\n")
    	tg.setenv("GOPATH", tg.path("."))
    	tg.runFail("build", "@x/y")
    	tg.grepStderr("invalid import path \"@x/y\"|can only use path@version syntax with 'go get' and 'go install' in module-aware mode", "did not reject @x/y import path")
    
    	tg.tempFile("src/-x/x.go", "package x\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. .bazelrc

    build:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    # for now, disable arm_neon. see: https://github.com/tensorflow/tensorflow/issues/33360
    build:dbg --cxxopt -DTF_LITE_DISABLE_X86_NEON
    # AWS SDK must be compiled in release mode. see: https://github.com/tensorflow/tensorflow/issues/37498
    build:dbg --copt -DDEBUG_BUILD
    
    # Config to build TF TPU
    build:tpu --define=with_tpu_support=true
    build:tpu --define=framework_shared_object=true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: global-strict
    spec:
      selector:
        matchLabels:
          app: "{{ .Destination }}"
      mtls:
        mode: STRICT
      portLevelMtls:
        8080:
          mode: PERMISSIVE
    				`).ApplyOrFail(t)
    				opt = opt.DeepCopy()
    				// Should pass for all workloads, in or out of mesh, targeting this port
    				src.CallOrFail(t, opt)
    			})
    		})
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    		//
    		// Space mapped for user arenas comes immediately after the range
    		// originally reserved for the regular heap when race mode is not
    		// enabled because user arena chunks can never be used for regular heap
    		// allocations and we want to avoid fragmenting the address space.
    		//
    		// In race mode we have no choice but to just use the same hints because
    		// the race detector requires that the heap be mapped contiguously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top