Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 121 for regs (0.04 sec)

  1. pkg/volume/util/hostutil/hostutil_test.go

    		raiseError    bool
    		expectedError string
    	}{
    		"GetMountRefs error": {
    			raiseError:    true,
    			expectedError: "Expected error.",
    		},
    		"No Refs error": {
    			expectedError: fmt.Sprintf("directory %s is not mounted", path),
    		},
    		"No Matching refs": {
    			mountRefs:    []string{filepath.Join("foo", "lish")},
    			expectedPath: filepath.Base(path),
    		},
    		"Matched ref": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 16:02:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    // This will automatically find the proper version of the object, and the
    // corresponding schema information.
    // The keys to the map must be consistent with the names
    // used by Refs within the schemas.
    // The schemas should conform to the Kubernetes Structural Schema OpenAPI
    // restrictions found in docs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/patch.go

    	if err != nil {
    		return nil, err
    	}
    	expectedObjectMeta := ObjectMetaForPatch{}
    	expectedObjectMeta.ResourceVersion = accessor.GetResourceVersion()
    	refs := accessor.GetOwnerReferences()
    	for _, ref := range refs {
    		var skip bool
    		for _, ownerUID := range ownerUIDs {
    			if ref.UID == ownerUID {
    				skip = true
    				break
    			}
    		}
    		if !skip {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  4. src/encoding/json/example_test.go

    		ID     int
    		Name   string
    		Colors []string
    	}
    	group := ColorGroup{
    		ID:     1,
    		Name:   "Reds",
    		Colors: []string{"Crimson", "Red", "Ruby", "Maroon"},
    	}
    	b, err := json.Marshal(group)
    	if err != nil {
    		fmt.Println("error:", err)
    	}
    	os.Stdout.Write(b)
    	// Output:
    	// {"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]}
    }
    
    func ExampleUnmarshal() {
    	var jsonBlob = []byte(`[
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. bin/update_deps.sh

    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      git ls-remote "https://github.com/istio/${1}.git" "refs/heads/${UPDATE_BRANCH}" | cut -f 1
    }
    
    make update-common
    
    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_android.c

    	va_end(ap);
    
    	abort();
    }
    
    // Truncated to a different magic value on 32-bit; that's ok.
    #define magic1 (0x23581321345589ULL)
    
    // From https://android.googlesource.com/platform/bionic/+/refs/heads/android10-tests-release/libc/private/bionic_asm_tls.h#69.
    #define TLS_SLOT_APP 2
    
    // inittls allocates a thread-local storage slot for g.
    //
    // It finds the first available slot using pthread_key_create and uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/Dockerfile

    # Download, validate, unpack, build, and install Ninja.
    ENV NinjaV=1.10.2
    ENV NinjaH=ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed
    RUN \
    	wget https://github.com/ninja-build/ninja/archive/refs/tags/v$NinjaV.tar.gz && \
    	echo "$NinjaH v$NinjaV.tar.gz" >sha && sha256sum -c sha && \
    	tar -xzf v$NinjaV.tar.gz && \
    	rm v$NinjaV.tar.gz && \
    	cd ninja-$NinjaV && \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. .github/workflows/arm-cd.yml

          - name: Upload pip wheel to PyPI
            if: github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v2')) # only if it is a scheduled nightly or tagged
            shell: bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. test/solitaire.go

    const N = 11 + 1 // length of a board row (+1 for newline)
    
    // The board must be surrounded by 2 illegal fields in each direction
    // so that move() doesn't need to check the board boundaries. Periods
    // represent illegal fields, ● are pegs, and ○ are holes.
    var board = []rune(
    	`...........
    ...........
    ....●●●....
    ....●●●....
    ..●●●●●●●..
    ..●●●○●●●..
    ..●●●●●●●..
    ....●●●....
    ....●●●....
    ...........
    ...........
    `)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  10. tests/fuzz/autoregistration_controller_fuzzer.go

    	tmplA = &v1alpha3.WorkloadGroup{
    		Template: &v1alpha3.WorkloadEntry{
    			Ports:          map[string]uint32{"http": 80},
    			Labels:         map[string]string{"app": "a"},
    			Network:        "nw0",
    			Locality:       "reg0/zone0/subzone0",
    			Weight:         1,
    			ServiceAccount: "sa-a",
    		},
    	}
    	// A valid Config.
    	// This can be modified to have pseudo-random
    	// values for more randomization.
    	wgA = config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top