Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for badly (0.04 sec)

  1. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Version: "9d02800338b8a55be062c838d1f02e0c5780b9eb",
    				Time:    time.Date(2018, 4, 17, 20, 00, 32, 0, time.UTC),
    				Tags:    []string{"v2.0.2"},
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v2.3.4", // badly-named branch (semver should be a tag)
    			info: &RevInfo{
    				Name:    "76a00fb249b7f93091bc2c89a789dab1fc1bc26f",
    				Short:   "76a00fb249b7",
    				Version: "76a00fb249b7f93091bc2c89a789dab1fc1bc26f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            buffer.consumeWhitespace();
            List<String> paramNames = new ArrayList<String>();
            consumeParameterList(buffer, paramNames);
            if (!buffer.consume(')')) {
                // Badly form args list
                return;
            }
            Expression expression = parseDirectiveBodyExpression(buffer);
            if (expression.getType() == IncludeType.QUOTED || expression.getType() == IncludeType.SYSTEM) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            def root = new DefaultTestSuiteDescriptor("1", "Suite")
            def testWorker = new DefaultTestSuiteDescriptor("2", "Test Worker 1")
    
            when:
            //simulating a scenario with suite failing badly enough so that no tests are executed
            collector.beforeSuite(root)
            collector.beforeSuite(testWorker)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  @Override
                  public Set<Object> create(Object... elements) {
                    return new HashSet<>(MinimalCollection.of(elements));
                  }
                })
            .named("badly colliding HashSet")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
                CollectionFeature.ALLOWS_NULL_VALUES,
                CollectionSize.SEVERAL)
            .suppressing(suppressForHashSet())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. cni/pkg/repair/repair_test.go

    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			makeDetectPod(
    				"TerminationCodeMatchTrue",
    				"",
    				126),
    			true,
    		},
    		{
    			"Check badly formatted pod",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			makePod(makePodArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  @Override
                  public Set<Object> create(Object... elements) {
                    return new HashSet<>(MinimalCollection.of(elements));
                  }
                })
            .named("badly colliding HashSet")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
                CollectionFeature.ALLOWS_NULL_VALUES,
                CollectionSize.SEVERAL)
            .suppressing(suppressForHashSet())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

        def root = rootBuild()
        def target = root.state
    
        def "fails on badly formed path"() {
            when:
            selector.resolveTaskName(null, null, target, path)
    
            then:
            def e = thrown(TaskSelectionException)
            e.message == message
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/flag.go

    			case '\\':
    				b.WriteByte('\\')
    			case 'n':
    				b.WriteByte('\n')
    			default:
    				// This shouldn't happen. The only backslashes that reach here
    				// should encode '\n' and '\\' exclusively.
    				panic("badly formatted input")
    			}
    		} else if r == '\\' {
    			wasBS = true
    			continue
    		} else {
    			b.WriteRune(r)
    		}
    		wasBS = false
    	}
    	return b.String()
    }
    
    type debugField struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top