Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for block64 (0.4 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			base.Fatalf("in %s, badly placed LoweredGetClosurePtr: %v %v", v.Block.Func.Name, v.Block, v)
    		}
    	}
    }
    
    // CheckArgReg ensures that v is in the function's entry block.
    func CheckArgReg(v *ssa.Value) {
    	entry := v.Block.Func.Entry
    	if entry != v.Block {
    		base.Fatalf("in %s, badly placed ArgIReg or ArgFReg: %v %v", v.Block.Func.Name, v.Block, v)
    	}
    }
    
    func AddrAuto(a *obj.Addr, v *ssa.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <h2 id="Blocks">Blocks</h2>
    
    <p>
    A <i>block</i> is a possibly empty sequence of declarations and statements
    within matching brace brackets.
    </p>
    
    <pre class="ebnf">
    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    </p>
    
    <ol>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    		{
    			name:     "blocked external to LB1",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP1,
    			destPort: svcPort,
    			output:   "DROP",
    		},
    		{
    			name:     "blocked external to LB2",
    			sourceIP: testExternalClientBlocked,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	// BlockFragment is part (or all) of a Header Block.
    	BlockFragment []byte
    
    	// EndStream indicates that the header block is the last that
    	// the endpoint will send for the identified stream. Setting
    	// this flag causes the stream to enter one of "half closed"
    	// states.
    	EndStream bool
    
    	// EndHeaders indicates that this frame contains an entire
    	// header block and is not followed by any
    	// CONTINUATION frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

    	   annotation, you should delete any existing NetworkPolicy
    	   objects. These would have had no effect before, but with v1
    	   semantics they might cause some traffic to be blocked that you
    	   didn't intend to be blocked.
    
    ### Other notable changes
    
    * Added exponential backoff to Azure cloudprovider ([#46660](https://github.com/kubernetes/kubernetes/pull/46660), [@jackfrancis](https://github.com/jackfrancis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    // until the action is complete, unless the container process fails, in which case the handler is aborted.
    message Lifecycle {
      // PostStart is called immediately after a container is created. If the handler fails,
      // the container is terminated and restarted according to its restart policy.
      // Other management of the container blocks until the hook completes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    	   annotation, you should delete any existing NetworkPolicy
    	   objects. These would have had no effect before, but with v1
    	   semantics they might cause some traffic to be blocked that you
    	   didn't intend to be blocked.
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "configMap": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

    // until the action is complete, unless the container process fails, in which case the handler is aborted.
    message Lifecycle {
      // PostStart is called immediately after a container is created. If the handler fails,
      // the container is terminated and restarted according to its restart policy.
      // Other management of the container blocks until the hook completes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    	Attributes_mask  uint64
    	Atime            StatxTimestamp
    	Btime            StatxTimestamp
    	Ctime            StatxTimestamp
    	Mtime            StatxTimestamp
    	Rdev_major       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top