Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,491 for one8 (0.07 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FilePathUtilTest.groovy

            "some"      | "path"            | "other/some"
            "some"      | "pather/one"      | "path/two/three"
            "some/path" | "one"             | "two/three"
            ""          | "one"             | "two/three"
            ""          | "oner"            | "one"
            "some/path" | "with/one/ending" | "without/two/different"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/universe.go

    	okfor[ir.OMOD] = okforand[:]
    	okfor[ir.OMUL] = okforarith[:]
    	okfor[ir.ONE] = okforeq[:]
    	okfor[ir.OOR] = okforand[:]
    	okfor[ir.OOROR] = okforbool[:]
    	okfor[ir.OSUB] = okforarith[:]
    	okfor[ir.OXOR] = okforand[:]
    	okfor[ir.OLSH] = okforand[:]
    	okfor[ir.ORSH] = okforand[:]
    
    	// unary
    	okfor[ir.OBITNOT] = okforand[:]
    	okfor[ir.ONEG] = okforarith[:]
    	okfor[ir.ONOT] = okforbool[:]
    	okfor[ir.OPLUS] = okforarith[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/security/index.md

    ## Additional Features
    
    There are some extra features to handle security apart from the ones covered in the [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 633 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/debug/dump.go

    	Rejected                   int
    	Timedout                   int
    	Cancelled                  int
    }
    
    // QueueDump is an instant dump of one queue in a queue-set.
    type QueueDump struct {
    	QueueSum          QueueSum
    	Requests          []RequestDump // just the waiting ones
    	RequestsExecuting []RequestDump
    	NextDispatchR     string
    	ExecutingRequests int
    	SeatsInUse        int
    }
    
    type QueueSum struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/collection/CaseInsensitiveMapTest.java

            assertThat(map.containsKey("onex"), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
            assertThat(map.get("ONE"), is("1"));
            assertThat(map.get("One"), is("1"));
            assertThat(map.get("hoge"), is(nullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testPut() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java

    import static org.apache.maven.api.ExtensibleEnums.projectScope;
    
    /**
     * Project scope.
     * Defines the type of source files to compile, usually either the one that compose the output package
     * (i.e. the <i>main</i> artifact) or the ones that will be used when building <i>tests</i>).
     * <p>
     * This extensible enum has two defined values, {@link #MAIN} and {@link #TEST},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/options/generic.go

    	fs.Var(cliflag.NewMapStringString(controllerManagerExtraArgs), ControllerManagerExtraArgs, "A set of extra flags to pass to the Controller Manager or override default ones in form of <flagname>=<value>")
    	fs.Var(cliflag.NewMapStringString(schedulerExtraArgs), SchedulerExtraArgs, "A set of extra flags to pass to the Scheduler or override default ones in form of <flagname>=<value>")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    		k := uint(1) // current minimum length of runs of ones in x.
    		for {
    			// Shrink all runs of zeros by p places (except the top zeros).
    			for p > 0 {
    				if p <= k {
    					// Shift p ones down into the top of each run of zeros.
    					x |= x >> (p & 63)
    					if x&(x+1) == 0 { // no more zeros (except at the top).
    						continue outer
    					}
    					break
    				}
    				// Shift k ones down into the top of each run of zeros.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/gofmt/internal.go

    		return
    	}
    
    	// If this is a declaration list, make it a source file
    	// by inserting a package clause.
    	// Insert using a ';', not a newline, so that the line numbers
    	// in psrc match the ones in src.
    	psrc := append([]byte("package p;"), src...)
    	file, err = parser.ParseFile(fset, filename, psrc, parserMode)
    	if err == nil {
    		sourceAdj = func(src []byte, indent int) []byte {
    			// Remove the package clause.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. src/go/format/internal.go

    		return
    	}
    
    	// If this is a declaration list, make it a source file
    	// by inserting a package clause.
    	// Insert using a ';', not a newline, so that the line numbers
    	// in psrc match the ones in src.
    	psrc := append([]byte("package p;"), src...)
    	file, err = parser.ParseFile(fset, filename, psrc, parserMode)
    	if err == nil {
    		sourceAdj = func(src []byte, indent int) []byte {
    			// Remove the package clause.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top