Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for redirection (0.56 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    ====
    
    [[sec:build_cache_redirects]]
    ==== Redirects
    
    `3xx` redirecting responses will be followed automatically.
    
    Servers must take care when redirecting `PUT` requests as only `307` and `308` redirect responses will be followed with a `PUT` request.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. licenses/cel.dev/expr/proto/test/v1/LICENSE

          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/os/file_windows.go

    	"sync"
    	"sync/atomic"
    	"syscall"
    	"unsafe"
    )
    
    // This matches the value in syscall/syscall_windows.go.
    const _UTIME_OMIT = -1
    
    // file is the real representation of *File.
    // The extra level of indirection ensures that no clients of os
    // can overwrite this data, which could cause the finalizer
    // to close the wrong file descriptor.
    type file struct {
    	pfd        poll.FD
    	name       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    			if c, _ := t.elem.(*Chan); c != nil && c.dir == RecvOnly {
    				parens = true
    			}
    		case SendOnly:
    			s = "chan<- "
    		case RecvOnly:
    			s = "<-chan "
    		default:
    			w.error("unknown channel direction")
    		}
    		w.string(s)
    		if parens {
    			w.byte('(')
    		}
    		w.typ(t.elem)
    		if parens {
    			w.byte(')')
    		}
    
    	case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. licenses/cel.dev/expr/LICENSE

          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
          outstanding shares, or (iii) beneficial ownership of such entity.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    		return syscall.Rename(oldname, newname)
    	})
    	if err != nil {
    		return &LinkError{"rename", oldname, newname, err}
    	}
    	return nil
    }
    
    // file is the real representation of *File.
    // The extra level of indirection ensures that no clients of os
    // can overwrite this data, which could cause the finalizer
    // to close the wrong file descriptor.
    type file struct {
    	pfd         poll.FD
    	name        string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/block.go

    	// these IDs densely, but no guarantees.
    	ID ID
    
    	// Source position for block's control operation
    	Pos src.XPos
    
    	// The kind of block this is.
    	Kind BlockKind
    
    	// Likely direction for branches.
    	// If BranchLikely, Succs[0] is the most likely branch taken.
    	// If BranchUnlikely, Succs[1] is the most likely branch taken.
    	// Ignored if len(Succs) < 2.
    	// Fatal if not BranchUnknown and len(Succs) > 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/os/file_plan9.go

    	"syscall"
    	"time"
    )
    
    // fixLongPath is a noop on non-Windows platforms.
    func fixLongPath(path string) string {
    	return path
    }
    
    // file is the real representation of *File.
    // The extra level of indirection ensures that no clients of os
    // can overwrite this data, which could cause the finalizer
    // to close the wrong file descriptor.
    type file struct {
    	fdmu       poll.FDMutex
    	fd         int
    	name       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/reflect/value.go

    			if st := steps[0]; st.kind == abiStepStack {
    				// This value is on the stack. If part of a value is stack
    				// allocated, the entire value is according to the ABI. So
    				// just make an indirection into the allocated frame.
    				fl := flagIndir | flag(tv.Kind())
    				ret[i] = Value{tv, add(stackArgs, st.stkOff, "tv.Size() != 0"), fl}
    				// Note: this does introduce false sharing between results -
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	//   1. the lease is an identity lease (different from leader election leases)
    	//   2. which component owns this lease
    	// TODO(sttts): remove this indirection
    	IdentityLeaseComponentLabelKey = controlplaneapiserver.IdentityLeaseComponentLabelKey
    	// KubeAPIServer defines variable used internally when referring to kube-apiserver component
    	KubeAPIServer = "kube-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top