Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 418 for maybeOf (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ArrayOfPrimitiveValueSnapshot.java

            @Nullable
            public static PrimitiveType maybeOfValue(@Nullable Object value) {
                return value != null ? maybeOf(value.getClass()) : null;
            }
    
            @Nullable
            private static PrimitiveType maybeOf(Class<?> arrayType) {
                for (PrimitiveType primitiveType : values()) {
                    if (primitiveType.arrayType == arrayType) {
                        return primitiveType;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. docs/en/mkdocs.maybe-insiders.yml

    Sebastián Ramírez <******@****.***> 1688142182 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 16:23:02 UTC 2023
    - 285 bytes
    - Viewed (0)
  3. test/chan/select5.go

    	select {
    	{{if .MaybeDefault}}
    	default:
    	{{end}}
    	{{if .Maybe}}
    	case dummy <- 1:
    		panic("dummy <- 1")
    	{{end}}
    	{{if .Maybe}}
    	case nilch <- 1:
    		panic("nilch <- 1")
    	{{end}}
    	{{if .Maybe}}
    	case <-dummy:
    		panic("<-dummy")
    	{{end}}
    	{{if .Maybe}}
    	case x = <-dummy:
    		panic("<-dummy x")
    	{{end}}
    	{{if .Maybe}}
    	case **(**int)(nil) = <-dummy:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     * corresponding started event has returned.
     *
     * Implementations may retain the notification values beyond the method that passed them.
     * Started notifications maybe held until a corresponding finished notification, and slightly after.
     * Finished notifications maybe held for a short time after the return of the finished signal for
     * off thread processing.
     *
     * Implementations must not error from either signal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. cni/test/testdata/pre/non_json.conf

    "This is not json"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 60 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleSpec.groovy

                            break
                        case InteractionExpectation.HEAD:
                            module.rootMetaData.expectHead()
                            break
                        case InteractionExpectation.MAYBE:
                            module.rootMetaData.allowAll()
                            break
                    }
    
                } else if (module instanceof IvyModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. util/print_surefire_reports.sh

        sed -e 's/TEST-//; s/.xml$//'))
    
    for file in "${files[@]}"; do
      # Dump file-output.txt and file.txt.
      # Use tail to include a filename header before each (and maybe truncate).
      tail -n 9999 "${file}"*.txt
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Sep 29 13:44:26 UTC 2020
    - 366 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

        }
    
        void maybeHeadOrGetArtifact(Map<String, String> artifact) {
            expectGetArtifact << new ArtifactExpectation(InteractionExpectation.MAYBE, artifact)
        }
    
        void maybeGetMetadata() {
            expectGetMetadata << InteractionExpectation.MAYBE
        }
    
        void expectGetVariantArtifacts(String variant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

     * into TaskSegments. This class represents the execution context of one such task segment.
     * </p>
     * <p>
     * Wise voices have suggested that maybe aggregators shouldn't be bound to the ordinary
     * lifecycle at all, in which case we wouldn't be needing this class at all ( and
     * ProjectBuildList.getByTaskSegments). Or maybe they should be introduced in the calculation
     * of the execution plan instead, which seems much nicer.
     * </p>
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/go120.go

    	cmd.Cancel = func() error {
    		// On timeout, send interrupt,
    		// in hopes of shutting down process tree.
    		// Ignore errors sending signal; it's all best effort
    		// and not even implemented on Windows.
    		// TODO(rsc): Maybe use a new process group and kill the whole group?
    		cmd.Process.Signal(os.Interrupt)
    		return nil
    	}
    	cmd.WaitDelay = 2 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 628 bytes
    - Viewed (0)
Back to top