Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for testlink (0.12 sec)

  1. src/internal/testenv/testenv_notwin.go

    			_ = os.RemoveAll(dir)
    		}()
    		fpath := filepath.Join(dir, "testfile.txt")
    		if err := os.WriteFile(fpath, nil, 0644); err != nil {
    			return false, ""
    		}
    		if err := os.Symlink(fpath, filepath.Join(dir, "testlink")); err != nil {
    			if SyscallIsNotSupported(err) {
    				return false, fmt.Sprintf("symlinks unsupported: %s", err.Error())
    			}
    			return false, ""
    		}
    	}
    
    	return true, ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/linearized_read_test.go

    	// [1] https://etcd.io/docs/v3.5/learning/api_guarantees/#isolation-level-and-consistency-of-replicas
    	ctx, store, etcdClient := testSetup(t)
    
    	dir := "/testing"
    	key := dir + "/testkey"
    	out := &example.Pod{}
    	obj := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", SelfLink: "testlink"}}
    
    	if err := store.Create(ctx, key, obj, out, 0); err != nil {
    		t.Fatalf("Set failed: %v", err)
    	}
    	originalRevision := out.ResourceVersion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:08:59 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/container/ring/ring_test.go

    	verify(t, r2b, 1, 0)
    }
    
    func TestLink2(t *testing.T) {
    	var r0 *Ring
    	r1a := &Ring{Value: 42}
    	r1b := &Ring{Value: 77}
    	r10 := makeN(10)
    
    	r1a.Link(r0)
    	verify(t, r1a, 1, 42)
    
    	r1a.Link(r1b)
    	verify(t, r1a, 2, 42+77)
    
    	r10.Link(r0)
    	verify(t, r10, 10, sumN(10))
    
    	r10.Link(r1a)
    	verify(t, r10, 12, sumN(10)+42+77)
    }
    
    func TestLink3(t *testing.T) {
    	var r Ring
    	n := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/netlink.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ipvs
    
    import (
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // NetLinkHandle for revoke netlink interface
    type NetLinkHandle interface {
    	// EnsureAddressBind checks if address is bound to the interface and, if not, binds it.  If the address is already bound, return true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"reflect"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  6. native-image-tests/src/main/resources/testlist.txt

    Jesse Wilson <******@****.***> 1683816537 -0400
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu May 11 14:48:57 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testing.go

    // Copyright 2020 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.
    
    // This file implements testing support.
    
    package syntax
    
    import (
    	"io"
    	"regexp"
    )
    
    // CommentsDo parses the given source and calls the provided handler for each
    // comment or error. If the text provided to handler starts with a '/' it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/Testing.kt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kube/krt/testing.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package krt
    
    // Dump is a *testing* helper to dump the state of a collection, if possible, into logs.
    func Dump[O any](c Collection[O]) {
    	c.(internalCollection[O]).dump()
    }
    
    type TestingDummyContext struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/testing.go

    Kante <******@****.***> 1644454438 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 00:53:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top