Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for badly (0.1 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            }));
            return "[" + desc + "]";
        }
    
        /**
         * Creates a new rule source instance to be applied to a model element.
         *
         * @throws InvalidModelRuleDeclarationException On badly formed rule source class.
         */
        public <T> ExtractedRuleSource<T> extract(Class<T> source) throws InvalidModelRuleDeclarationException {
            try {
                return cache.get(source).newInstance(source);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	if section.Flags&elf.SHF_ALLOC != 0 {
    		t.Fatal("expected zero alloc flag got nonzero for .shstrtab")
    	}
    	for idx, p := range elfFile.Progs {
    		if section.Offset >= p.Off && section.Offset < p.Off+p.Filesz {
    			t.Fatalf("badly formed .shstrtab, is contained in segment %d", idx)
    		}
    	}
    }
    
    func TestElfBindNow(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	const (
    		prog = `package main; func main() {}`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    )
    
    // UTC represents Universal Coordinated Time (UTC).
    var UTC *Location = &utcLoc
    
    // utcLoc is separate so that get can refer to &utcLoc
    // and ensure that it never returns a nil *Location,
    // even if a badly behaved client has changed UTC.
    var utcLoc = Location{name: "UTC"}
    
    // Local represents the system's local time zone.
    // On Unix systems, Local consults the TZ environment
    // variable to find the time zone to use. No TZ means
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/net/mail/message.go

    	// whether an error from the Decode method was due to the
    	// CharsetReader (meaning the charset is invalid).
    	// We used to look for the charsetError type in the error result,
    	// but that behaves badly with CharsetReaders other than the
    	// one in rfc2047Decoder.
    	adec := *dec
    	charsetReaderError := false
    	adec.CharsetReader = func(charset string, input io.Reader) (io.Reader, error) {
    		if dec.CharsetReader == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    // where n is the number of distinct addresses with goroutines blocked
    // on them that hash to the given semaRoot.
    // See golang.org/issue/17953 for a program that worked badly
    // before we introduced the second level of list, and
    // BenchmarkSemTable/OneAddrCollision/* for a benchmark that exercises this.
    type semaRoot struct {
    	lock  mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	assert.NoError(t, asw.AddAttachUncertainReconstructedVolume(volumeName1, volumeSpec1, nodeName, ""))
    	assert.NoError(t, asw.MarkDeviceAsUncertain(volumeName1, "/dev/badly/reconstructed", "/var/lib/kubelet/plugins/global1", ""))
    	assert.NoError(t, asw.AddAttachUncertainReconstructedVolume(volumeName2, volumeSpec2, nodeName, ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    	MoveAllToActiveOrBackoffQueue(logger klog.Logger, event framework.ClusterEvent, oldObj, newObj interface{}, preCheck PreEnqueueCheck)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    | `https://example.com/my folder/` | `https://example.com/my%20folder/` | Spaces are not valid in URLs.
    | `https://example.com/my%%badly%encoded%path` | `https://example.com/my%25%25badly%25encoded%25path` | `%` must be encoded as `%25` in URLs, and no `%`-escapes should be invalid.
    |===
    
    [[deprecate_self_resolving_dependency]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	entry := v.Block.Func.Entry
    	if entry != v.Block {
    		base.Fatalf("in %s, badly placed LoweredGetClosurePtr: %v %v", v.Block.Func.Name, v.Block, v)
    	}
    	for _, w := range entry.Values {
    		if w == v {
    			break
    		}
    		switch w.Op {
    		case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    			// okay
    		default:
    			base.Fatalf("in %s, badly placed LoweredGetClosurePtr: %v %v", v.Block.Func.Name, v.Block, v)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Authorization:  NewDelegatingAuthorizationOptions(),
    		Audit:          NewAuditOptions(),
    		Features:       NewFeatureOptions(),
    		CoreAPI:        NewCoreAPIOptions(),
    		// Wired a global by default that sadly people will abuse to have different meanings in different repos.
    		// Please consider creating your own FeatureGate so you can have a consistent meaning for what a variable contains
    		// across different repos.  Future you will thank you.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top