Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 422 for gretty (0.53 sec)

  1. src/go/doc/comment/testdata/linklist4.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Cool things:
    
      - Foo
      - [Go] is great
        
        [Go]: https://go.dev/
      - Bar
    
    -- text --
    Cool things:
    
      - Foo
    
      - Go is great
    
      - Bar
    
    [Go]: https://go.dev/
    -- markdown --
    Cool things:
    
      - Foo
    
      - [Go](https://go.dev/) is great
    
      - Bar
    
    -- html --
    <p>Cool things:
    <ul>
    <li><p>Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 407 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/go.sum

    github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
    github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
    github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
    github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
    github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/strict/strict.go

    		if _, err := s.New(gvk); err == nil {
    			scheme = s
    			break
    		}
    	}
    	if scheme == nil {
    		return errors.Errorf("unknown configuration %#v", gvk)
    	}
    
    	opt := json.SerializerOptions{Yaml: true, Pretty: false, Strict: true}
    	serializer := json.NewSerializerWithOptions(json.DefaultMetaFactory, scheme, scheme, opt)
    	_, _, err := serializer.Decode(bytes, &gvk, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    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 that that nation might live. It is altogether fitting...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.td

                     returned. The order of the resource handles in the returned
                     vector are the order of those resources in the results of the
                     op.}],
          /*retTy=*/"llvm::SmallVector<ResourceHandleValueAndId, 4>",
          /*methodName=*/"GetResourceHandleValueAndIdList",
          /*args=*/(ins "llvm::SmallDenseMap<ResourceHandle, int64_t>&":$resource_handle_id_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 30 19:07:07 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. src/net/sockopt_bsd.go

    		// On DragonFly BSD, we adjust the ephemeral port
    		// range because unlike other BSD systems its default
    		// port range doesn't conform to IANA recommendation
    		// as described in RFC 6056 and is pretty narrow.
    		switch family {
    		case syscall.AF_INET:
    			syscall.SetsockoptInt(s, syscall.IPPROTO_IP, syscall.IP_PORTRANGE, syscall.IP_PORTRANGE_HIGH)
    		case syscall.AF_INET6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    			}
    			break
    		}
    		actions := client.Actions()
    
    		if !reflect.DeepEqual(actions, test.expectedActions) {
    			t.Errorf("Test %q: action not expected\nExpected:\n%s\ngot:\n%s", test.name, dump.Pretty(test.expectedActions), dump.Pretty(actions))
    		}
    
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/go/ast/filter_test.go

    	files := map[string]*ast.File{"": file}
    	pkg, err := ast.NewPackage(fset, files, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// filter
    	merged := ast.MergePackageFiles(pkg, ast.FilterFuncDuplicates)
    
    	// pretty-print
    	var buf strings.Builder
    	if err := format.Node(&buf, fset, merged); err != nil {
    		t.Fatal(err)
    	}
    	output := buf.String()
    
    	if output != golden {
    		t.Errorf("incorrect output:\n%s", output)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            given:
            def app = new ExeWithLibraryUsingLibraryHelloWorldApp()
            app.writeSources(file("exe/src/main"), file("lib/src/main"), file("greet/src/main"))
    
            and:
            createDirs("exe", "lib", "greet")
            settingsFile << """
                include ':exe', ':lib', ':greet'
            """
            buildFile << """
                project(":exe") {
                    apply plugin: "cpp-application"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/customTaskWithFileProperty/kotlin/build.gradle.kts

        @TaskAction
        fun greet() {
            val file = destination.get().asFile
            file.parentFile.mkdirs()
            file.writeText("Hello!")
        }
    }
    // end::task[]
    
    // tag::config[]
    val greetingFile = objects.fileProperty()
    
    tasks.register<GreetingToFileTask>("greet") {
        destination = greetingFile
    }
    
    tasks.register("sayGreeting") {
        dependsOn("greet")
        val greetingFile = greetingFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 764 bytes
    - Viewed (0)
Back to top