Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 216 for yield (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        Severity.ERROR,
                        Version.BASE,
                        prefix + "systemPath",
                        d.getManagementKey(),
                        "must be omitted. This field may only be specified for a dependency with system scope.",
                        d);
            }
    
            if (request.getValidationLevel() >= ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_2_0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	)
    
    	// DNSNoEndpointClusters tracks dns clusters without endpoints
    	DNSNoEndpointClusters = monitoring.NewGauge(
    		"pilot_dns_cluster_without_endpoints",
    		"DNS clusters without endpoints caused by the endpoint field in "+
    			"STRICT_DNS type cluster is not set or the corresponding subset cannot select any endpoint",
    	)
    
    	// ProxyStatusClusterNoInstances tracks clusters (services) without workloads.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "BFXIL", argLength: 2, reg: gp21nog, asm: "BFXIL", aux: "ARM64BitField", resultInArg0: true},
    		// insert low width bits of arg0 into the result starting at bit lsb, bits to the left of the inserted bit field are set to the high/sign bit of the inserted bit field, bits to the right are zeroed
    		{name: "SBFIZ", argLength: 1, reg: gp11, asm: "SBFIZ", aux: "ARM64BitField"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    		}
    		size += utf8.RuneCountInString(x.Name)
    		if size >= maxSize {
    			break
    		}
    	}
    	return
    }
    
    func (p *printer) isOneLineFieldList(list []*ast.Field) bool {
    	if len(list) != 1 {
    		return false // allow only one field
    	}
    	f := list[0]
    	if f.Tag != nil || f.Comment != nil {
    		return false // don't allow tags or comments
    	}
    	// only name(s) and type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	}
    }
    
    func TestClientErrorWithRequestURI(t *testing.T) {
    	defer afterTest(t)
    	req, _ := NewRequest("GET", "http://localhost:1234/", nil)
    	req.RequestURI = "/this/field/is/illegal/and/should/error/"
    	_, err := DefaultClient.Do(req)
    	if err == nil {
    		t.Fatalf("expected an error")
    	}
    	if !strings.Contains(err.Error(), "RequestURI") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    	pad     [3]byte // compiler uses 32-bit load for "enabled" field
    	alignme uint64  // guarantee alignment so that compiler can use a 32 or 64-bit load
    }
    
    // gcBlackenEnabled is 1 if mutator assists and background mark
    // workers are allowed to blacken objects. This must only be set when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        Severity.ERROR,
                        Version.BASE,
                        prefix + "systemPath",
                        d.getManagementKey(),
                        "must be omitted. This field may only be specified for a dependency with system scope.",
                        d);
            }
    
            if (request.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    			// of generating synthetic relocs for our synthetic
    			// relocs.
    			//
    			// Furthermore, the rela sections contain dynamic
    			// relocations with R_ADDR relocations on
    			// Elf64_Rela.r_offset. This field should contain the
    			// symbol offset as determined by reloc(), not the
    			// final dynamically linked address as a dynamic
    			// relocation would provide.
    			switch ldr.SymName(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	fooPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"foo": "true"}),
    		Field: fields.Everything(),
    	}
    	barPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"bar": "true"}),
    		Field: fields.Everything(),
    	}
    
    	createWatch := func(pred storage.SelectionPredicate) watch.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMap.java

      public ImmutableSortedMap<K, V> descendingMap() {
        // TODO(kevinb): The descendingMap is never actually cached at all. Either:
        //
        // - Cache it, and annotate the field with @LazyInit.
        // - Simplify the code below, and consider eliminating the field (b/287198172), which is also
        //   set by one of the constructors.
        ImmutableSortedMap<K, V> result = descendingMap;
        if (result == null) {
          if (isEmpty()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top