Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for barmod (3.01 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

                    "FooBar" : dependentClasses([] as Set, ["BarFoo"] as Set),
                    "X" : dependentClasses([] as Set, ["Y"] as Set),
                ]))
            )
    
            when:
            def deps = a.findTransitiveDependents(["Foo"], [:])
    
            then:
            deps.getAccessibleDependentClasses() == ["Bar", "FooBar", "BarFoo"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/admission_test.go

      name: foobar
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://admission.example.com
      name: barfoo
    users:
    - name: a name
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    contexts:
    - name: default
      context:
        cluster: barfoo
        user: a name
    current-context: default
    `,
    			wantErr: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/mirror_client_test.go

    		"bar_foo":         {Name: "bar", Namespace: "foo"},
    		"bar.org_foo.com": {Name: "bar.org", Namespace: "foo.com"},
    		"bar-bar_foo":     {Name: "bar-bar", Namespace: "foo"},
    	}
    	failedCases := []string{"barfoo", "bar_foo_foo", "", "bar_", "_foo"}
    
    	for podFullName, expected := range successfulCases {
    		name, namespace, err := kubecontainer.ParsePodFullName(podFullName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		},
    		{
    			name:   "test List with filter returning only one item, ensure only a single page returned",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "barfoo"),
    				Label: labels.Everything(),
    				Limit: 1,
    			},
    			expectedOut:    []example.Pod{*preset[3]},
    			expectContinue: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. src/internal/xcoff/ar.go

    	Arnxtmem [20]byte // Next member pointer
    	Arprvmem [20]byte // Previous member pointer
    	Ardate   [12]byte // File member date
    	Aruid    [12]byte // File member uid
    	Argid    [12]byte // File member gid
    	Armode   [12]byte // File member mode (octal)
    	Arnamlen [4]byte  // File member name length
    	// _ar_nam is removed because it's easier to get name without it.
    }
    
    // Archive represents an open AIX big archive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/net/http/header_test.go

    	{"BAR, FOO", "foo", true},
    	{"BAR,FOO, baz", "foo", true},
    	{"BAR, FOO,BAZ", "foo", true},
    	{"BAR,FOO, BAZ", "foo", true},
    	{"BAR, FOO, BAZ", "foo", true},
    	{"foobar", "foo", false},
    	{"barfoo ", "foo", false},
    }
    
    func TestHasToken(t *testing.T) {
    	for _, tt := range hasTokenTests {
    		if hasToken(tt.header, tt.token) != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

         */
        void virtualFileSystemContentsChanged(Collection<FileSystemLocationSnapshot> removedSnapshots, Collection<FileSystemLocationSnapshot> addedSnapshots, SnapshotHierarchy root);
    
        /**
         * Trigger armed watch probe at given path.
         */
        void triggerWatchProbe(String path);
    
        /**
         * Remove watched hierarchies that have been moved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

      name: foobar
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: barfoo
    users:
    - name: a name
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    contexts:
    - name: default
      context:
        cluster: barfoo
        user: a name
    current-context: default
    `,
    			wantErr: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ecdsa
    
    import (
    	"bufio"
    	"bytes"
    	"compress/bzip2"
    	"crypto/elliptic"
    	"crypto/internal/bigmod"
    	"crypto/rand"
    	"crypto/sha1"
    	"crypto/sha256"
    	"crypto/sha512"
    	"encoding/hex"
    	"hash"
    	"io"
    	"math/big"
    	"os"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. go.mod

    	bitbucket.org/bertimus9/systemstat v0.5.0
    	github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab
    	github.com/Microsoft/go-winio v0.6.0
    	github.com/Microsoft/hcsshim v0.8.25
    	github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e
    	github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
    	github.com/blang/semver/v4 v4.0.0
    	github.com/container-storage-interface/spec v1.9.0
    	github.com/containerd/cgroups v1.1.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top