Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for ungetc (0.16 sec)

  1. src/crypto/x509/x509.go

    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    	// explicitly set to zero. The case of MaxPathLen==0 with MaxPathLenZero==false
    	// should be treated equivalent to -1 (unset).
    	//
    	// When generating a certificate, an unset pathLenConstraint
    	// can be requested with either MaxPathLen == -1 or using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "properties": {
            "message": {
              "description": "Message represents the message displayed when validation fails. The message is required if the Rule contains line breaks. The message must not contain line breaks. If unset, the message is \"failed rule: {Rule}\". e.g. \"must be a URL with the host matching spec.host\"",
              "type": "string"
            },
            "rule": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    			return C_LCONADDR
    
    		case obj.NAME_AUTO:
    			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 = c.autosize + a.Offset
    			return c.aconsize()
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-FP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	return err
    }
    
    func (b *dFlag) String() string { return "" }
    
    func init() {
    	work.AddBuildFlags(CmdGet, work.OmitModFlag)
    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    	switch getU.version {
    	case "", "upgrade", "patch":
    		// ok
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.listMap.exists(m, m.k == 'a1' && m.v == 'b1')": 16,
    				"self.listMap.map(m, m.v).exists(v, v == 'b1')":      55,
    
    				// 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')":             21,
    				"!self.listMap.all(m, has(m.v2) && m.v2 != 'z')":               10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // If not nullopt the a predicate that is true iff the cluster is alive.
        // Otherwise the user has (unsafely) disabled deadness analysis.  If this is
        // unset on a single Cluster instance then it is unset on all Cluster
        // instances.
        const std::optional<DeadnessPredicate>& deadness_predicate() const {
          return deadness_predicate_;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

        }
    
    
        def "property is restored to initial state after unset"() {
            given:
            def property = propertyWithNoValue()
            property.set(someValue())
    
            expect:
            assertPropertyValueIs(someValue(), property)
            property.explicit
    
            when:
            property.unset()
    
            then:
            !property.present
            property.getOrNull() == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    		ik = gvk.Service
    	} else if kind == gvk.ServiceEntry.Kind && group == gvk.ServiceEntry.Group {
    		ik = gvk.ServiceEntry
    	} else {
    		return empty, fmt.Errorf("unsupported parentKey: %v/%v", p.Group, kind)
    	}
    	// Unset namespace means "same namespace"
    	ns = ptr.OrDefault((*string)(p.Namespace), localNamespace)
    	return parentKey{
    		Kind:      ik,
    		Name:      string(p.Name),
    		Namespace: ns,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
    
            properties.put(DefaultCommandLineActionFactory.WELCOME_MESSAGE_ENABLED_SYSTEM_PROPERTY, Boolean.toString(renderWelcomeMessage));
    
            // Having this unset is now deprecated, will default to `false` in Gradle 9.0
            // TODO remove - see https://github.com/gradle/gradle/issues/26810
            properties.put("org.gradle.kotlin.dsl.skipMetadataVersionCheck", "false");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // genEnumWithRuleAndValues creates a function that accepts an optional maxLength
    // with given validation rule and a set of enum values, following the convention of existing tests.
    // The test has two checks, first with maxLength unset to check if maxLength can be concluded from enums,
    // second with maxLength set to ensure it takes precedence.
    func genEnumWithRuleAndValues(rule string, values ...string) func(maxLength *int64) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top