Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 370 for disallows (0.27 sec)

  1. src/cmd/go/testdata/script/build_cwd_newline.txt

    [GOOS:windows] skip 'filesystem normalizes / to \'
    [GOOS:plan9] skip 'filesystem disallows \n in paths'
    
    # If the directory path containing a package to be built includes a newline,
    # the go command should refuse to even try to build the package.
    
    env DIR=$WORK${/}${newline}'package main'${newline}'func main() { panic("uh-oh")'${newline}'/*'
    
    mkdir $DIR
    cd $DIR
    exec pwd
    cp $WORK/go.mod ./go.mod
    cp $WORK/main.go ./main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. docs/bucket/retention/README.md

    A default retention period and retention mode can be configured on a bucket to be applied to objects created in that bucket. Independent of retention, an object can also be under legal hold. This effectively disallows all deletes of an object under legal hold until the legal hold is removed by an API call.
    
    ## Get Started
    
    ### 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. hack/verify-shellcheck.sh

    SHELLCHECK_VERSION="0.9.0"
    SHELLCHECK_IMAGE="docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7"
    
    # disabled lints
    disabled=(
      # this lint disallows non-constant source, which we use extensively without
      # any known bugs
      1090
      # this lint warns when shellcheck cannot find a sourced file
      # this wouldn't be a bad idea to warn on, but it fails on lots of path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // instead of overriding the old value.  In other words, appending scope B to
    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    // disallows a node being merged with nodes in other scopes, the scope
    // conjunction preserves the semantic of the old scope (i.e., the node still
    // cannot be merged with the previously incompatible nodes.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/net/http/http.go

    	// URL that contains a valid host and the same scheme as the parent request.
    	// If the target is a path, it will inherit the scheme and host of the
    	// parent request.
    	//
    	// The HTTP/2 spec disallows recursive pushes and cross-authority pushes.
    	// Push may or may not detect these invalid pushes; however, invalid
    	// pushes will be detected and canceled by conforming clients.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

         * action and reacquired at the end.
         */
        void blocking(Runnable action);
    
        /**
         * Runs the given action and disallows the current thread from attempting to acquire or release any project locks.
         * Applying this constraint means that the thread will not block waiting for a project lock and cause a deadlock.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/debugcall.go

    	// the system stack to avoid growing our stack.
    	systemstack(func() {
    		// TODO(mknyszek): It would be nice to wrap these arguments in an allocated
    		// closure and start the goroutine with that closure, but the compiler disallows
    		// implicit closure allocation in the runtime.
    		fn := debugCallWrap1
    		newg := newproc1(*(**funcval)(unsafe.Pointer(&fn)), gp, callerpc, false, waitReasonZero)
    		args := &debugCallWrapArgs{
    			dispatch: dispatch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/module/module.go

    		// Entire set of ASCII punctuation, from which we remove characters:
    		//     ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
    		// We disallow some shell special characters: " ' * < > ? ` |
    		// (Note that some of those are disallowed by the Windows file system as well.)
    		// We also disallow path separators / : and \ (fileNameOK is only called on path element characters).
    		// We allow spaces (U+0020) in file names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         * @param provider The provider of the elements
         * @return this
         * @since 5.1
         */
        HasMultipleValues<T> convention(Provider<? extends Iterable<? extends T>> provider);
    
        /**
         * Disallows further changes to the value of this property. Calls to methods that change the value of this property, such as {@link #set(Iterable)} or {@link #add(Object)} will fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/net/protoconn_test.go

    	}
    
    	la, err := ResolveIPAddr("ip4", "127.0.0.1")
    	if err != nil {
    		t.Fatal(err)
    	}
    	c, err := ListenIP("ip4:icmp", la)
    	if testenv.SyscallIsNotSupported(err) {
    		// May be inside a container that disallows creating a socket or
    		// not running as root.
    		t.Skipf("skipping: %v", err)
    	} else if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    	c.LocalAddr()
    	c.RemoteAddr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top