Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 492 for sanity (0.15 sec)

  1. src/runtime/cgo/gcc_libinit.c

    	// pbounds can be passed in by the caller; see gcc_linux_amd64.c.
    	if (pbounds == NULL) {
    		pbounds = &bounds[0];
    	}
    
    	x_cgo_getstackbound(pbounds);
    
    	g->stacklo = *pbounds;
    
    	// Sanity check the results now, rather than getting a
    	// morestack on g0 crash.
    	if (g->stacklo >= g->stackhi) {
    		fprintf(stderr, "runtime/cgo: bad stack bounds: lo=%p hi=%p\n", (void*)(g->stacklo), (void*)(g->stackhi));
    		abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/fake_test.go

    	if err != nil {
    		t.Errorf("unexpected error creating rule: %v", err)
    	} else if !existed {
    		t.Errorf("wrong return value from EnsureRule with already-existing rule")
    	}
    
    	// Sanity-check...
    	buf.Reset()
    	err = fake.SaveInto("", buf)
    	if err != nil {
    		t.Fatalf("unexpected error from SaveInto: %v", err)
    	}
    	expected = dedent.Dedent(strings.Trim(`
    		*nat
    		:PREROUTING - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java

                        }
                    }
                }
            }
            return plugins.values();
        }
    
        private PluginInfo extractPluginInfo(Artifact artifact) {
            // sanity: jar, no classifier and file exists
            if (artifact != null
                    && "jar".equals(artifact.getExtension())
                    && "".equals(artifact.getClassifier())
                    && artifact.getPath() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

              exported_names,
              ','.join([tf.saved_model.tag_constants.SERVING]),
              upgrade_legacy,
              show_debug_info,
          )
          # We don't strictly need this, but it serves as a handy sanity check
          # for that API, which is otherwise a bit annoying to test.
          # The canonicalization shouldn't affect these tests in any way.
          mlir = pywrap_mlir.experimental_run_pass_pipeline(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/strconv/makeisprint.go

    	fmt.Fprintf(&buf, "var isGraphic = []uint16{\n")
    	for r := rune(0); r <= unicode.MaxRune; r++ {
    		if unicode.IsPrint(r) != unicode.IsGraphic(r) {
    			// Sanity check.
    			if !unicode.IsGraphic(r) {
    				log.Fatalf("%U is printable but not graphic\n", r)
    			}
    			if r > 0xFFFF { // We expect only 16-bit values.
    				log.Fatalf("%U too big for isGraphic\n", r)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

                    DependencyScope.SYSTEM.id(),
                    DependencyScope.SYSTEM.isTransitive(),
                    all(),
                    MavenArtifactProperties.LOCAL_PATH));
    
            // == sanity check
            if (result.size() != DependencyScope.values().length - 1) { // sans "undefined"
                throw new IllegalStateException("Maven4 API dependency scope mismatch");
            }
    
            return result;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java

        if (element instanceof Entry) {
          Entry<?, ?> entry = (Entry<?, ?>) element;
          element = mapEntry(entry.getKey(), entry.getValue());
        }
        assertTrue(collection.contains(element)); // sanity check
        iterator.remove();
        assertFalse(collection.contains(element));
        assertEquals(originalSize - 1, collection.size());
      }
    
      @CollectionFeature.Require({KNOWN_ORDER, SUPPORTS_ITERATOR_REMOVE})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. tests/fuzz/regression_test.go

    	"regexp"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/util/runtime"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // baseCases contains a few trivial test cases to do a very brief sanity check of a test
    var baseCases = [][]byte{
    	{},
    	[]byte("."),
    	[]byte(".............."),
    }
    
    // brokenCases contains test cases that are currently failing. These should only be added if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common.py

        mlir = pywrap_mlir.experimental_convert_saved_model_to_mlir(
            save_model_path, ','.join(exported_names), show_debug_info
        )
        # We don't strictly need this, but it serves as a handy sanity check
        # for that API, which is otherwise a bit annoying to test.
        # The canonicalization shouldn't affect these tests in any way.
        mlir = pywrap_mlir.experimental_run_pass_pipeline(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 23:49:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

                        }
                    }
                }
            }
            return plugins.values();
        }
    
        private PluginInfo extractPluginInfo(Artifact artifact) {
            // sanity: jar, no classifier and file exists
            if (artifact != null
                    && "jar".equals(artifact.getExtension())
                    && "".equals(artifact.getClassifier())
                    && artifact.getPath() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top