Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 257 for Bad (0.03 sec)

  1. src/cmd/go/internal/telemetrystats/version_unix.go

    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    	}
    	telemetry.Inc(fmt.Sprintf("go/platform/host/%s/major-version:%s", runtime.GOOS, major))
    	telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:%s-%s", runtime.GOOS, major, minor))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/trace/value.go

    // string values in the future.
    func valueAsString(v Value) string {
    	switch v.Kind() {
    	case ValueUint64:
    		return fmt.Sprintf("Uint64(%d)", v.scalar)
    	}
    	return "Bad"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r63/DistributionChecksumCrossVersionSpec.groovy

            withConnection { connection ->
                connection.newBuild().forTasks("wrapper").run()
            }
            file('gradle/wrapper/gradle-wrapper.properties') << 'distributionSha256Sum=bad'
    
            when:
            def connector = this.connector()
            connector.useBuildDistribution()
            withConnection(connector) { ProjectConnection connection ->
                connection.newBuild().forTasks("help").run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/time/format_test.go

    		t.Errorf("%s: bad year: %d not %d", test.name, time.Year(), 2010)
    	}
    	if time.Month() != February {
    		t.Errorf("%s: bad month: %s not %s", test.name, time.Month(), February)
    	}
    	if time.Day() != 4 {
    		t.Errorf("%s: bad day: %d not %d", test.name, time.Day(), 4)
    	}
    	if time.Hour() != 21 {
    		t.Errorf("%s: bad hour: %d not %d", test.name, time.Hour(), 21)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

      }
    
      private static class BadEqualsFactory {
        /** oneConstantOnly matters now since it can be either null or the constant. */
        @SuppressWarnings("unused") // Called by reflection
        public static Object bad(String a, int b, @Nullable OneConstantEnum oneConstantOnly) {
          return new GoodEquals(a, b);
        }
      }
    
      public void testNullsOnReturnValues_good() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. src/runtime/stack.go

    		s = mheap_.allocManual(_StackCacheSize>>_PageShift, spanAllocStack)
    		if s == nil {
    			throw("out of memory")
    		}
    		if s.allocCount != 0 {
    			throw("bad allocCount")
    		}
    		if s.manualFreeList.ptr() != nil {
    			throw("bad manualFreeList")
    		}
    		osStackAlloc(s)
    		s.elemsize = fixedStack << order
    		for i := uintptr(0); i < _StackCacheSize; i += s.elemsize {
    			x := gclinkptr(s.base() + i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    		}
    		if want {
    			var addr uintptr
    			tp, addr = tp.next(interior + size)
    			if addr == 0 {
    				println("runtime: found bad iterator")
    				bad = true
    			}
    			if addr != x+i {
    				print("runtime: addr=", hex(addr), " x+i=", hex(x+i), "\n")
    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(interior + size)
    		if addr == 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/wrap_converter.py

    """Wraps TFLite Converter interface with python lazy loader."""
    # We need to import pywrap_tensorflow prior to the converter wrapper.
    # pylint: disable=invalid-import-order,g-bad-import-order
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    from tensorflow.compiler.mlir.lite.python import _pywrap_converter_api
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/common/source_code.cc

      StringPiece line(raw_line);
      bool had_trailing_newline = str_util::ConsumeSuffix(&line, "\n");
    
      if (absl::StrContains(line, '\n')) {
        LOG(ERROR) << "Attempt to add multiple lines; bad formatting is likely.";
      } else if (had_trailing_newline) {
        LOG(WARNING) << "Superfluous trailing newline in '" << line << "'";
      }
      lines_.push_back({indent, string(absl::StripTrailingAsciiWhitespace(line))});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/go/build/deps_test.go

    			continue
    		}
    		if sawImport[pkg] == nil {
    			sawImport[pkg] = map[string]bool{}
    		}
    		var bad []string
    		for _, imp := range imports {
    			sawImport[pkg][imp] = true
    			if !policy.HasEdge(pkg, imp) {
    				bad = append(bad, imp)
    			}
    		}
    		if bad != nil {
    			t.Errorf("unexpected dependency: %s imports %v", pkg, bad)
    		}
    	}
    }
    
    var buildIgnore = []byte("\n//go:build ignore")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top