Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for ungetc (0.24 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // each named variable on its own line.
    //
    // The -json flag prints the environment in JSON format
    // instead of as a shell script.
    //
    // The -u flag requires one or more arguments and unsets
    // the default setting for the named environment variables,
    // if one has been set with 'go env -w'.
    //
    // The -w flag requires one or more arguments of the
    // form NAME=VALUE and changes the default settings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    properties: mtls: description: Mutual TLS settings for workload. properties: mode: description: Defines the mTLS mode used for peer authentication. enum: - UNSET - DISABLE - PERMISSIVE - STRICT type: string type: object portLevelMtls: additionalProperties: properties: mode: description: Defines the mTLS mode used for peer authentication. enum: - UNSET - DISABLE - PERMISSIVE - STRICT type: string type: object description: Port specific mutual TLS settings. type: object selector: description: The selector...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			// The frame top 8 or 16 bytes are for FP
    			c.instoffset = int64(c.autosize) + a.Offset - int64(c.extrasize)
    			return autoclass(c.instoffset)
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

    # Removes and restores an EXIT trap.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-trap-pop {
      # Remove current trap.
      unset 'LOG_TRAP_STACK[-1]'
    
      # Restore previous trap.
      if [ ${#LOG_TRAP_STACK[@]} -ne 0 ]; then
        local t="${LOG_TRAP_STACK[-1]}"
        # shellcheck disable=2064
        trap "${t}" EXIT
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                   get_output_dim_for_valid_padding(input_width, dilation_width,
                                                    input_height, stride_width);
      }
    
      // Determines if the padding attribute is "VALID", "SAME", or unset.
      // If not, the input's shape should be adjusted with explicit `tfl.pad` op.
      // (https://www.tensorflow.org/api_docs/python/tf/nn).
      bool HasProperPadding(stablehlo::ConvolutionOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	c, err = l.Listener.Accept()
    	if err == nil {
    		l.mu.Lock()
    		*l.last = c
    		l.mu.Unlock()
    	}
    	return
    }
    
    // TestIdentityResponse verifies that a handler can unset
    func TestIdentityResponse(t *testing.T) { run(t, testIdentityResponse) }
    func testIdentityResponse(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/56019")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    					{
    						Address: "1.1.1.1",
    						Ports: map[string]uint32{
    							"http-valid1": 65536,
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "protocol unset for addresses empty", in: &networking.ServiceEntry{
    				Hosts:     []string{"google.com"},
    				Addresses: []string{},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.listMap.exists(m, m.k == 'a1' && m.v == 'b1')",
    				"self.listMap.map(m, m.v).exists(v, v == 'b1')",
    
    				// test comprehensions where the field used in predicates is unset on all but one of the elements:
    				// - with has checks:
    
    				"self.listMap.exists(m, has(m.v2) && m.v2 == 'z')",
    				"!self.listMap.all(m, has(m.v2) && m.v2 != 'z')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			     }`, valid.Unix()),
    			},
    			openIDConfig: `{
    					"issuer": "{{.URL}}",
    					"jwks_uri": "{{.URL}}/.testing/keys"
    			}`,
    			optsFunc: func(opts *Options) {
    				opts.CAContentProvider = nil // unset CA automatically set by the test to allow us to use a custom client
    			},
    			wantErr: `oidc: could not expand distributed claims: while getting distributed claim "groups": Get "{{.URL}}/groups": some unexpected oidc error`,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top