Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for lima (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    				"X-Remote-Extra-2-key2": {"golf", "hotel"},
    			},
    			expectedUser: &user.DefaultInfo{
    				Name:   "Bob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/src/testFixtures/java/com/acme/Simpsons.java

        private static final Person LISA = new Person("Elisabeth Marie", "Simpson");
        private static final Person MAGGIE = new Person("Margaret Eve", "Simpson");
        private static final List<Person> FAMILY = new ArrayList<Person>() {{
            add(HOMER);
            add(MARGE);
            add(BART);
            add(LISA);
            add(MAGGIE);
        }};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/src/testFixtures/java/com/acme/Simpsons.java

        private static final Person LISA = new Person("Elisabeth Marie", "Simpson");
        private static final Person MAGGIE = new Person("Margaret Eve", "Simpson");
        private static final List<Person> FAMILY = new ArrayList<Person>() {{
            add(HOMER);
            add(MARGE);
            add(BART);
            add(LISA);
            add(MAGGIE);
        }};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/runtime/runtime-gdb_unix_test.go

    func enableCore() {
    	debug.SetTraceback("crash")
    
    	var lim syscall.Rlimit
    	err := syscall.Getrlimit(syscall.RLIMIT_CORE, &lim)
    	if err != nil {
    		panic(fmt.Sprintf("error getting rlimit: %v", err))
    	}
    	lim.Cur = lim.Max
    	fmt.Fprintf(os.Stderr, "Setting RLIMIT_CORE = %+#v\n", lim)
    	err = syscall.Setrlimit(syscall.RLIMIT_CORE, &lim)
    	if err != nil {
    		panic(fmt.Sprintf("error setting rlimit: %v", err))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/syscall/rlimit.go

    // Code that really wants Go to leave the limit alone can set the hard limit,
    // which Go of course has no choice but to respect.
    func init() {
    	var lim Rlimit
    	if err := Getrlimit(RLIMIT_NOFILE, &lim); err == nil && lim.Cur != lim.Max {
    		origRlimitNofile.Store(&lim)
    		nlim := lim
    		nlim.Cur = nlim.Max
    		adjustFileLimit(&nlim)
    		setrlimit(RLIMIT_NOFILE, &nlim)
    	}
    }
    
    func Setrlimit(resource int, rlim *Rlimit) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. cmd/testdata/invalid_test_key.pub

    bqUMkTz2mnFz/MnrKJTECN3Fy0GPCCQ5dxmG8p8DyMiNl7JYkX2r3XYgxmioCzkcg8fDs5p0CaQcipu+MA7iK7APKq7v4Zr/wNltXHI3DE9S8J88Hxb2FZAyEhCRfcgGmCVfoZxVNCRHNkGYzfe63BkxtnseUCzpYEhKv02H5u9rjFpdMY37kDfHDVqBbgutdMij+tQAEp1kyqi6TQL+4XHjPHkLaeekW07yB+VI90dK1A9dzTpOvE= liza@example.io...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 569 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/test/java/com/acme/FamilyTest.java

            );
            System.out.println("family = " + family);
            System.out.println("maggie() = " + maggie());
            assertEquals(5, family.size());
            assertTrue(family.contains(lisa()));
            assertTrue(family.contains(maggie()));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux.go

    		ExcludeOverhead: true,
    	}
    	req := resourcehelper.PodRequests(pod, opts)
    	lim := resourcehelper.PodLimits(pod, opts)
    	var cpuRequest *resource.Quantity
    	if _, cpuRequestExists := req[v1.ResourceCPU]; cpuRequestExists {
    		cpuRequest = req.Cpu()
    	}
    	return m.calculateLinuxResources(cpuRequest, lim.Cpu(), lim.Memory())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. docs/en/layouts/custom.yml

            "blue":        "#2094f3",
            "light-blue":  "#02a6f2",
            "cyan":        "#00bdd6",
            "teal":        "#009485",
            "green":       "#4cae4f",
            "light-green": "#8bc34b",
            "lime":        "#cbdc38",
            "yellow":      "#ffec3d",
            "amber":       "#ffc105",
            "orange":      "#ffa724",
            "deep-orange": "#ff6e42",
            "brown":       "#795649",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 14:05:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_generic.go

    	// wider inputs: we take the carry for each coefficient by shifting it right
    	// by 51, and add it to the limb above it. The top carry is multiplied by 19
    	// according to the reduction identity and added to the lowest limb.
    	//
    	// The largest coefficient (r0) will be at most 111 bits, which guarantees
    	// that all carries are at most 111 - 51 = 60 bits, which fits in a uint64.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top