Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for badly (0.52 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            then:
            // Submodule is updated
            gitCheckout.file('deeperDep/foo').text == "baz"
            gitCheckout.file('deeperDep/evenDeeperDep/foo').text == "buzz"
        }
    
        def 'reports error when badly formed module used'() {
            given:
            settingsFile << """
                rootProject.name = 'test'
                sourceControl {
                    gitRepository("${repo.url}").producesModule(":not:a:module:")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. src/mime/encodedword.go

    	}
    	return hb<<4 | lb, nil
    }
    
    func fromHex(b byte) (byte, error) {
    	switch {
    	case b >= '0' && b <= '9':
    		return b - '0', nil
    	case b >= 'A' && b <= 'F':
    		return b - 'A' + 10, nil
    	// Accept badly encoded bytes.
    	case b >= 'a' && b <= 'f':
    		return b - 'a' + 10, nil
    	}
    	return 0, fmt.Errorf("mime: invalid hex byte %#02x", b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/intervals.go

    	for i := 0; i < len(is); i++ {
    		st := is[i].st
    		en := is[i].en
    		if en <= st {
    			return fmt.Errorf("bad range elem %d:%d, en<=st", st, en)
    		}
    		if i == 0 {
    			continue
    		}
    		// check for badly ordered starts
    		pst := is[i-1].st
    		pen := is[i-1].en
    		if pst >= st {
    			return fmt.Errorf("range start not ordered %d:%d less than prev %d:%d", st, en,
    				pst, pen)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache.go

    	if currState.pod.Spec.NodeName != newPod.Spec.NodeName {
    		logger.Error(nil, "Pod updated on a different node than previously added to", "podKey", key, "pod", klog.KObj(oldPod))
    		logger.Error(nil, "scheduler cache is corrupted and can badly affect scheduling decisions")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    	return cache.updatePod(logger, oldPod, newPod)
    }
    
    func (cache *cacheImpl) RemovePod(logger klog.Logger, pod *v1.Pod) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            then:
            oldCacheDirs.each {
                it.assertDoesNotExist()
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13816")
        def "classpath can contain badly formed jar"() {
            given:
            file("broken.jar") << "not a jar"
            buildFile << """
                buildscript { dependencies { classpath files("broken.jar") } }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	// (we use both in our iptables code later on anyway)
    	//
    	// We could explicitly check for all 3 every time to be sure, but that's likely not necessary,
    	// if we find one unless the host OS is badly broken we will find the others.
    	iptablesSaveBin := fmt.Sprintf("%s-save", iptablesBin)
    	iptablesRestoreBin := fmt.Sprintf("%s-restore", iptablesBin)
    	var parsedVer *utilversion.Version
    	var isNft bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/go/build/read.go

    			pos := r.pos
    			for {
    				c := r.readByteNoBuf()
    				if c == '\n' || r.err != nil || r.eof {
    					break
    				}
    				line = append(line, c)
    			}
    			// Add args if line is well-formed.
    			// Ignore badly-formed lines - the compiler will report them when it finds them,
    			// and we can pretend they are not there to help go list succeed with what it knows.
    			embs, err := parseGoEmbed(string(line), pos)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/modindex/build_read.go

    			pos := r.pos
    			for {
    				c := r.readByteNoBuf()
    				if c == '\n' || r.err != nil || r.eof {
    					break
    				}
    				line = append(line, c)
    			}
    			// Add args if line is well-formed.
    			// Ignore badly-formed lines - the compiler will report them when it finds them,
    			// and we can pretend they are not there to help go list succeed with what it knows.
    			embs, err := parseGoEmbed(string(line), pos)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. 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)
Back to top