Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,398 for Seven (0.17 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/plugin1/plugin1.go

    func F() int {
    	_ = make([]byte, 1<<21) // trigger stack unwind, Issue #18190.
    	return 3
    }
    
    func ReadCommonX() int {
    	return common.X
    }
    
    var Seven int
    
    func call(fn func()) {
    	fn()
    }
    
    func g() {
    	common.X *= Seven
    }
    
    func init() {
    	Seven = 7
    	call(g)
    }
    
    type sameNameReusedInPlugins struct {
    	X string
    }
    
    type sameNameHolder struct {
    	F *sameNameReusedInPlugins
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 820 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	if got := common.X; got != wantX {
    		log.Fatalf("after plugin load common.X=%d, want %d", got, wantX)
    	}
    
    	seven, err := p.Lookup("Seven")
    	if err != nil {
    		log.Fatalf(`Lookup("Seven") failed: %v`, err)
    	}
    	if got, want := *seven.(*int), 7; got != want {
    		log.Fatalf("plugin1.Seven=%d, want %d", got, want)
    	}
    
    	readFunc, err := p.Lookup("ReadCommonX")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    1890a371.gettysburg.txt-100x.zst Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/src/test/java/HelloStepdefs.java

    public class HelloStepdefs {
        @Given("^I have a hello app with Howdy and /four")
        public void I_have_a_hello_app_with() {
            System.out.println("Given");
        }
    
        @When("^I ask it to say hi and /five/six/seven")
        public void I_ask_it_to_say_hi() {
            System.out.println("When");
        }
    
        @Then("^it should answer with Howdy World")
        public void it_should_answer_with() {
            System.out.println("Then");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 542 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/src/test/resources/helloworld.feature

    Feature: Hello World /one
    
    @bar
    Scenario: Say hello /two/three
    Given I have a hello app with Howdy and /four
    When I ask it to say hi and /five/six/seven
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 192 bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    void AddRegularFunctionFunctionDef(FunctionDefLibrary* fdef_lib) {
      Tensor seven(DT_FLOAT, {});
      seven.scalar<float>()() = 7;
      FunctionDef make_regular_float = FunctionDefHelper::Define(
          "RegularFloatFn", {}, {"r:float"}, {},
          {{{"r"}, "Const", {}, {{"dtype", DT_FLOAT}, {"value", seven}}}});
      *fdef_lib->add_function() = make_regular_float;
    }
    
    TEST(NodesRelatedToRefVariables, Basic) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializerTest.groovy

            def macro7 = new UnresolvableMacro("SEVEN")
            def macro8 = new UnresolvableMacro("EIGHT")
            def directives = DefaultIncludeDirectives.of(ImmutableList.of(), ImmutableList.copyOf([macro1, macro2, macro3, macro4, macro5, macro6, macro7, macro8]), ImmutableList.of())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/compress/testdata/gettysburg.txt

      Four score and seven years ago our fathers brought forth on
    this continent, a new nation, conceived in Liberty, and dedicated
    to the proposition that all men are created equal.
      Now we are engaged in a great Civil War, testing whether that
    nation, or any nation so conceived and so dedicated, can long
    endure.
      We are met on a great battle-field of that war.
      We have come to dedicate a portion of that field, as a final
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  9. istioctl/pkg/install/k8sversion/version_test.go

    	}
    	versionInvalid1 = &version.Info{
    		Major:      "1",
    		Minor:      "7",
    		GitVersion: "v1.invalid.7",
    	}
    	versionInvalid2 = &version.Info{
    		Major:      "one",
    		Minor:      "seven",
    		GitVersion: "one.seven",
    	}
    )
    
    func TestExtractKubernetesVersion(t *testing.T) {
    	cases := []struct {
    		version  *version.Info
    		expected int
    		errMsg   error
    		isValid  bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 02:46:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
        - two
        - three
        - four
        - five
        - six
        - seven
        - eight
        - nine
        env:
        - name: VAR_3
          valueFrom:
            secretKeyRef:
              key: some-other-key
              name: some-oher-name
        - name: VAR_2
          valueFrom:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top