Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 197 for isAllowed (0.26 sec)

  1. src/runtime/runtime2.go

    // once notewakeup has been called, the notesleep
    // will return.  future notesleep will return immediately.
    // subsequent noteclear must be called only after
    // previous notesleep has returned, e.g. it's disallowed
    // to call noteclear straight after notewakeup.
    //
    // notetsleep is like notesleep but wakes up after
    // a given number of nanoseconds even if the event
    // has not yet happened.  if a goroutine uses notetsleep to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    To allow additional flags, set CGO_CFLAGS_ALLOW to a regular expression
    matching the new flags. To disallow flags that would otherwise be allowed,
    set CGO_CFLAGS_DISALLOW to a regular expression matching arguments
    that must be disallowed. In both cases the regular expression must match
    a full argument: to allow -mfoo=bar, use CGO_CFLAGS_ALLOW='-mfoo.*',
    not just CGO_CFLAGS_ALLOW='-mfoo'. Similarly named variables control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    		} else {
    			d.buf.WriteByte(b)
    		}
    
    		b0, b1 = b1, b
    	}
    	data := d.buf.Bytes()
    	data = data[0 : len(data)-trunc]
    
    	// Inspect each rune for being a disallowed character.
    	buf := data
    	for len(buf) > 0 {
    		r, size := utf8.DecodeRune(buf)
    		if r == utf8.RuneError && size == 1 {
    			d.err = d.syntaxError("invalid UTF-8")
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    // credit. This first satisfies blocked assists on the
    // work.assistQueue and then flushes any remaining credit to
    // gcController.bgScanCredit.
    //
    // Write barriers are disallowed because this is used by gcDrain after
    // it has ensured that all work is drained and this must preserve that
    // condition.
    //
    //go:nowritebarrierrec
    func gcFlushBgCredit(scanWork int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    	{
    		"myscheme://authority<\"hi\">/foo",
    		&URL{
    			Scheme: "myscheme",
    			Host:   "authority<\"hi\">",
    			Path:   "/foo",
    		},
    		"",
    	},
    	// spaces in hosts are disallowed but escaped spaces in IPv6 scope IDs are grudgingly OK.
    	// This happens on Windows.
    	// golang.org/issue/14002
    	{
    		"tcp://[2020::2020:20:2020:2020%25Windows%20Loves%20Spaces]:2020",
    		&URL{
    			Scheme: "tcp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    in_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-5-expected.txt","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-2-expected.png","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1228952692,"max_t":1228952692,"mean_t":1228952692},{"name":"use-on-disallowed-foreign-object-6-expected.png","kids":[],"cl_weight":0.02222222222222222...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    specified. The signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                << device_type.type_string();
    
        if (CompilationDisallowedByXlaCompileAttr(node)) {
          VLOG(2) << "Not clustering " << node->name()
                  << ": disallowed by _XlaCompile attribute";
          continue;
        }
    
        const XlaOpRegistry::DeviceRegistration* registration;
        if (!XlaOpRegistry::GetCompilationDevice(device_type.type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		// This prefix is owned by the Go core for possible use in the
    		// standard library (since it does not begin with a domain name),
    		// so it's OK to disallow entirely.
    		return nil, false, fmt.Errorf("disallowed import path %q", path)
    	}
    
    	if strings.Contains(path, "@") {
    		return nil, false, errors.New("can only use path@version syntax with 'go get' and 'go install' in module-aware mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    }
    
    // recordspan adds a newly allocated span to h.allspans.
    //
    // This only happens the first time a span is allocated from
    // mheap.spanalloc (it is not called when a span is reused).
    //
    // Write barriers are disallowed here because it can be called from
    // gcWork when allocating new workbufs. However, because it's an
    // indirect call from the fixalloc initializer, the compiler can't see
    // this.
    //
    // The heap lock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top