Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for overflow (0.73 sec)

  1. src/cmd/go/internal/work/security_test.go

    	{"-fsanitize=hands"},
    	{"-g"},
    	{"-ggdb"},
    	{"-march=souza"},
    	{"-mcmodel=medium"},
    	{"-mcpu=123"},
    	{"-mfpu=123"},
    	{"-mlarge-data-threshold=16"},
    	{"-mtune=happybirthday"},
    	{"-mstack-overflow"},
    	{"-mno-stack-overflow"},
    	{"-mmacosx-version"},
    	{"-mnop-fun-dllimport"},
    	{"-pthread"},
    	{"-std=c99"},
    	{"-xc"},
    	{"-D", "FOO"},
    	{"-D", "foo=bar"},
    	{"-I", "."},
    	{"-I", "/etc/passwd"},
    	{"-I", "世界"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

                "2nd problem (same message as 1st but different location)",
                subject.onProblem(buildLogicProblem("build.gradle.kts", "failure"), ProblemSeverity.Failure)
            )
            assertFalse(
                "overflow",
                subject.onProblem(buildLogicProblem("build.gradle", "another failure"), ProblemSeverity.Failure)
            )
            assertThat(
                subject.get().uniqueProblemCount,
                equalTo(2)
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MoreCollectors.java

          element = null;
          extras = emptyList();
        }
    
        IllegalArgumentException multiples(boolean overflow) {
          StringBuilder sb =
              new StringBuilder().append("expected one element but was: <").append(element);
          for (Object o : extras) {
            sb.append(", ").append(o);
          }
          if (overflow) {
            sb.append(", ...");
          }
          sb.append('>');
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            ExecutionEvent event = mock(ExecutionEvent.class);
            MavenProject project = mock(MavenProject.class);
            when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow");
            when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin");
            when(project.getPackaging()).thenReturn("maven-plugin");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			// If we reach here it's because of number under-/overflow.
    			// TODO(gri) setConst (and in turn the go/constant package)
    			// should return an error describing the issue.
    			check.errorf(e, InvalidConstVal, "malformed constant: %s", e.Value)
    			goto Error
    		}
    		// Ensure that integer values don't overflow (go.dev/issue/54280).
    		x.expr = e // make sure that check.overflow below has an error position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FGT", controls: 1},
    		{name: "FGE", controls: 1},
    		{name: "LTnoov", controls: 1}, // 'LT' but without honoring overflow
    		{name: "LEnoov", controls: 1}, // 'LE' but without honoring overflow
    		{name: "GTnoov", controls: 1}, // 'GT' but without honoring overflow
    		{name: "GEnoov", controls: 1}, // 'GE' but without honoring overflow
    
    		// JUMPTABLE implements jump tables.
    		// Aux is the symbol (an *obj.LSym) for the jump table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/conversions.go

    		ok = constConvertibleTo(T, &x.val)
    		// A conversion from an integer constant to an integer type
    		// can only fail if there's overflow. Give a concise error.
    		// (go.dev/issue/63563)
    		if !ok && isInteger(x.typ) && isInteger(T) {
    			check.errorf(x, InvalidConversion, "constant %s overflows %s", x.val, T)
    			x.mode = invalid
    			return
    		}
    	case constArg && isTypeParam(T):
    		// x is convertible to T if it is convertible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              }
            };
        Bar bar = getDone(transform(future, function, directExecutor()));
        assertSame(barChild, bar);
      }
    
      /*
       * Android does not handle this stack overflow gracefully... though somehow some other
       * stack-overflow tests work. It must depend on the exact place the error occurs.
       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              }
            };
        Bar bar = getDone(transform(future, function, directExecutor()));
        assertSame(barChild, bar);
      }
    
      /*
       * Android does not handle this stack overflow gracefully... though somehow some other
       * stack-overflow tests work. It must depend on the exact place the error occurs.
       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                KaSymbolContainingDeclarationProviderMixIn::class
                    .declaredMemberExtensionFunctions
                    .filterNot {
                        // Rendering a containing symbol is prone to stack overflow.
                        // * function symbol will render its value parameter symbol(s)
                        //   whose containing symbol is that function symbol.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top