Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for pawn (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1.startsWith('Rook')",
    				"!self.val1.startsWith('knight')",
    				"self.val1.contains('takes')",
    				"!self.val1.contains('gives')",
    				"self.val1.endsWith('👑')",
    				"!self.val1.endsWith('pawn')",
    				"self.val1.matches('^[^0-9]*$')",
    				"!self.val1.matches('^[0-9]*$')",
    				"type(self.val1) == string",
    				"size(self.val1) == 12",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. istioctl/pkg/util/clusters/wrapper.go

    // It has extra helper functions for handling any/struct/marshal protobuf pain
    type Wrapper struct {
    	*admin.Clusters
    }
    
    // MarshalJSON is a custom marshaller to handle protobuf pain
    func (w *Wrapper) MarshalJSON() ([]byte, error) {
    	return protomarshal.Marshal(w)
    }
    
    // UnmarshalJSON is a custom unmarshaller to handle protobuf pain
    func (w *Wrapper) UnmarshalJSON(b []byte) error {
    	cd := &admin.Clusters{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue29312.go

    // a runtime.slicetype for each of the following 253 types:
    //
    //     []*pwn
    //     [][]*pwn
    //     ...
    //     [][]...[][]*pwn          - 249 total "[]"
    //     [][]...[][][]*pwn        - 250 total "[]"
    //     [][]...[][][][]*pwn      - 251 total "[]"
    //     [][]...[][][][][]*pwn    - 252 total "[]"
    //     [][]...[][][][][][]*pwn  - 253 total "[]"
    //
    // The type names for these types are as follows. Because we truncate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorNestingIntegrationTest.groovy

            "greeting": "Property<String>",
            "childSubmissions": "int"
        ])
    
        def "workers with no isolation can spawn more work with #nestedIsolationMode"() {
            buildFile << """
                ${getWorkActionWithNesting("noIsolation", nestedIsolationMode)}
                task runInWorker(type: NestingWorkerTask)
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security_test.go

    	{"-Ufoo=bar"},
    	{"-F@dir"},
    	{"-F-dir"},
    	{"-I@dir"},
    	{"-I-dir"},
    	{"-O@1"},
    	{"-Wa,-foo"},
    	{"-W@foo"},
    	{"-Wp,-DX,-D@X"},
    	{"-Wp,-UX,-U@X"},
    	{"-g@gdb"},
    	{"-g-gdb"},
    	{"-march=@dawn"},
    	{"-march=-dawn"},
    	{"-mcmodel=@model"},
    	{"-mlarge-data-threshold=@12"},
    	{"-std=@c99"},
    	{"-std=-c99"},
    	{"-x@c"},
    	{"-x-c"},
    	{"-D", "@foo"},
    	{"-D", "-foo"},
    	{"-I", "@foo"},
    	{"-I", "-foo"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	evt.returnValue = false;
    
    	var svgDoc = evt.target.ownerDocument;
    
    	var g = getRoot(svgDoc);
    
    	if(
    		evt.target.tagName == "svg" 
    		|| !enableDrag // Pan anyway when drag is disabled and the user clicked on an element 
    	) {
    		// Pan mode
    		state = 'pan';
    
    		stateTf = g.getCTM().inverse();
    
    		stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
    	} else {
    		// Drag mode
    		state = 'drag';
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. istioctl/pkg/util/configdump/wrapper.go

    	}
    	return typ, nil
    }
    
    // Wrapper is a wrapper around the Envoy ConfigDump
    // It has extra helper functions for handling any/struct/marshal protobuf pain
    type Wrapper struct {
    	*admin.ConfigDump
    }
    
    // UnmarshalJSON is a custom unmarshaller to handle protobuf pain
    func (w *Wrapper) UnmarshalJSON(b []byte) error {
    	cd := &admin.ConfigDump{}
    	err := protomarshal.UnmarshalAllowUnknownWithAnyResolver(nonStrictResolver, b, cd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/runtime-seh_windows_test.go

    	}
    	return pcs[:n]
    }
    
    // SEH unwinding does not report inlined frames.
    //
    //go:noinline
    func sehf3(pan bool) []uintptr {
    	return sehf4(pan)
    }
    
    //go:noinline
    func sehf4(pan bool) []uintptr {
    	var pcs []uintptr
    	if pan {
    		panic("sehf4")
    	}
    	pcs = sehCallers()
    	return pcs
    }
    
    func testSehCallersEqual(t *testing.T, pcs []uintptr, want []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

        }
    
        private static List<Boolean> parametersNullabilityOf(CtBehavior behavior) {
            def annotations = behavior.parameterAnnotations as List<Object[]>
            annotations.collect { Object[] pAnn ->
                pAnn.flatten().any { isNullableCtAnnotation(it) }
            }
        }
    
        private static boolean hasNullableAnnotation(CtField field) {
            return NULLABLE_ANNOTATIONS.any { field.hasAnnotation(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

        /**
         * Merge the process' error stream into its output stream
         */
        ExecHandleBuilder redirectErrorStream();
    
        ExecHandleBuilder setDisplayName(String displayName);
    
        /**
         * When true, spawn the process. That is, start the process and leave it running once successfully started. When false, fork the process (the default). That is, start the process and wait for it to complete.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top