Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 233 for attest (0.08 sec)

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

    Russ Cox <******@****.***> 1669746650 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 36 bytes
    - Viewed (0)
  2. src/go/build/testdata/directives/d_test.go

    //go:xtest2
    //go:xtest3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 40 bytes
    - Viewed (0)
  3. src/go/build/testdata/doc/b_test.go

    jimmyfrasche <******@****.***> 1519513438 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 17 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/nettest/nettest.go

    // Copyright 2019 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 nettest provides utilities for network testing.
    package nettest
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    )
    
    var (
    	stackOnce               sync.Once
    	ipv4Enabled             bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/testng-java-passing/groovy/src/test/java/org/gradle/OkTest.java

    package org.gradle;
    
    public class OkTest {
        @org.testng.annotations.Test
        public void passingTest() {
        }
    
        @org.testng.annotations.Test(expectedExceptions = RuntimeException.class)
        public void expectedFailTest() {
            throw new RuntimeException("broken");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 284 bytes
    - Viewed (0)
  6. pilot/pkg/xds/adstest.go

    func (a *AdsTest) WithID(id string) *AdsTest {
    	a.ID = id
    	return a
    }
    
    func (a *AdsTest) WithType(typeURL string) *AdsTest {
    	a.Type = typeURL
    	return a
    }
    
    func (a *AdsTest) WithMetadata(m model.NodeMetadata) *AdsTest {
    	a.metadata = m
    	return a
    }
    
    func (a *AdsTest) WithTimeout(t time.Duration) *AdsTest {
    	a.timeout = t
    	return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/config/schema/ast/ast_test.go

    Kuat <******@****.***> 1711758663 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    go list -m all
    stdout '^a v0.1.0 '
    stdout '^b v0.1.0 '
    stdout '^c v0.1.0 '
    
    -- m.go --
    package main
    
    import (
    	"fmt"
    
    	_ "a"  // a_test imports b/x.
    )
    
    func main() {
    }
    -- m.go.new --
    package main
    
    import (
    	"fmt"
    
    	_ "a"  // a_test imports b/x.
    	"b/y"  // This is a new import, not yet reflected in the go.mod file.
    )
    
    func main() {
    	fmt.Println(b.CVersion())
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_lazy_test_horizon.txt

    # This file demonstrates the effect of lazy loading on the selected
    # versions of test dependencies.
    
    # The package import graph used in this test looks like:
    #
    # m ---- a
    #  \     |
    #   \    a_test ---- b
    #    \               |
    #     x              b_test
    #     |                    \
    #     x_test -------------- c
    #
    # And the module dependency graph looks like:
    #
    # m -- a.1 -- b.1 -- c.2
    #  \
    #   x.1 ------------ c.1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 30 18:05:18 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. maven-embedder/src/examples/simple-project/src/test/java/org/apache/maven/embedder/AppTest.java

    package org.apache.maven.embedder;
    
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for simple App.
     */
    public class AppTest
        extends TestCase
    {
        /**
         * Create the test case
         *
         * @param testName name of the test case
         */
        public AppTest( String testName )
        {
            super( testName );
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 651 bytes
    - Viewed (0)
Back to top