Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 233 for attest (0.1 sec)

  1. src/go/build/testdata/directives/c_test.go

    //go:xtest1
    
    package p_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  2. src/internal/xcoff/ar_test.go

    Shulhan <******@****.***> 1552106197 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 22:19:22 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/dwtest/dwtest.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dwtest
    
    import (
    	"debug/dwarf"
    	"errors"
    	"fmt"
    	"os"
    )
    
    // Helper type for supporting queries on DIEs within a DWARF
    // .debug_info section. Invoke the populate() method below passing in
    // a dwarf.Reader, which will read in all DIEs and keep track of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/internal/pkgpattern/pat_test.go

    Than McIntosh <******@****.***> 1663790073 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. pkg/apis/abac/latest/latest.go

    limitations under the License.
    */
    
    package latest
    
    import (
    	//Init the abac api package
    	_ "k8s.io/kubernetes/pkg/apis/abac"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v0"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    // TODO: this file is totally wrong, it should look like other latest files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 08:30:35 UTC 2019
    - 919 bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/latest/latest.go

    limitations under the License.
    */
    
    package latest
    
    import (
    	"k8s.io/component-base/config/v1alpha1"
    	v1 "k8s.io/kube-scheduler/config/v1"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/scheme"
    )
    
    // Default creates a default configuration of the latest versioned type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:47:48 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    module example.net/a
    
    go 1.21
    
    require example.net/outer/inner v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.net/outer/inner"
    -- b/go.mod --
    module example.net/b
    
    go 1.21
    
    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/AntBuilderLoggingIntegrationTest.groovy

    class AntBuilderLoggingIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireIsolatedDaemons()
            buildFile """
                ant.saveStreams = false
                task antTest {
                    doLast {
                        ant.echo(message: "VERBOSE message", level: "verbose")
                        ant.echo(message: "DEBUG message", level: "debug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_statements.txt

    import "fmt"
    
    func F() {
    	fmt.Println("pkg2")
    }
    -- pkg2/a_test.go --
    package pkg2
    -- pkg3/a.go --
    package pkg3
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg3")
    }
    -- pkg3/a_test.go --
    package pkg3
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    }
    -- pkg4/a.go --
    package pkg4
    
    type T struct {
    	X bool
    }
    -- pkg4/a_test.go --
    package pkg4
    
    import (
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/AppTest.java.template

    ${fileComment.multilineComment}${packageDecl.javaStatement}
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class AppTest {
        @Test public void appHasAGreeting() {
            App classUnderTest = new App();
            assertNotNull("app should have a greeting", classUnderTest.getGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 314 bytes
    - Viewed (0)
Back to top