Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 191 for Bbox (0.04 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "ants",
            "comparison",
            "quicksand",
            "eyes",
            "thumb",
            "church",
            "needle",
            "celery",
            "competition",
            "metal",
            "box",
            "industry",
            "brother",
            "deer",
            "waves",
            "advice",
            "acoustics",
            "nut",
            "store",
            "finger"
        ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. docs/en/docs/contributing.md

    You will see that every language has all the pages. But some pages are not translated and have an info box at the top, about the missing translation.
    
    Now let's say that you want to add a translation for the section [Features](features.md){.internal-link target=_blank}.
    
    * Copy the file at:
    
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

            propertyTypeByReceiverType.forEach((receiverType, propertyType) -> {
                result.beginControlFlow("if ($T.class.isAssignableFrom(receiverClass))", TypeUtils.typeName(receiverType).box());
                result.addStatement("return $T.class", TypeUtils.typeName(propertyType).box());
                result.endControlFlow();
            });
            result.addStatement("return null");
            return result.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    = Caching Java projects
    
    As of Gradle 4.0, the build tool fully supports caching plain Java projects.
    Built-in tasks for compiling, testing, documenting and checking the quality of Java code support the build cache out of the box.
    
    [[java_compilation]]
    == Java compilation
    
    Caching Java compilation makes use of Gradle's deep understanding of compile classpaths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/runtime/mranges.go

    type atomicOffAddr struct {
    	// a contains the offset address, unlike offAddr.
    	a atomic.Int64
    }
    
    // Clear attempts to store minOffAddr in atomicOffAddr. It may fail
    // if a marked value is placed in the box in the meanwhile.
    func (b *atomicOffAddr) Clear() {
    	for {
    		old := b.a.Load()
    		if old < 0 {
    			return
    		}
    		if b.a.CompareAndSwap(old, int64(minOffAddr.addr()-arenaBaseOffset)) {
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. docs/de/docs/contributing.md

    Sie werden sehen, dass jede Sprache alle Seiten hat. Einige Seiten sind jedoch nicht übersetzt und haben oben eine Info-Box, dass die Übersetzung noch fehlt.
    
    Nehmen wir nun an, Sie möchten eine Übersetzung für den Abschnitt [Features](features.md){.internal-link target=_blank} hinzufügen.
    
    * Kopieren Sie die Datei:
    
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/trace/goroutines.go

    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    function reloadTable(key, value) {
      let params = new URLSearchParams(window.location.search);
      params.set(key, value);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/net/mptcpsock_linux.go

    }
    
    // hasFallenBack reports whether the MPTCP connection has fallen back to "plain"
    // TCP.
    //
    // A connection can fallback to TCP for different reasons, e.g. the other peer
    // doesn't support it, a middle box "accidentally" drops the option, etc.
    //
    // If the MPTCP protocol has not been requested when creating the socket, this
    // method will return true: MPTCP is not being used.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 18:48:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/ASN1Util.java

            return as(type, sequence.getObjectAt(index));
        }
    
    
        /**
         * Read a  tagged object without parsing it's contents
         *
         * BC no longer seems to allow that out of the box
         *
         * @param expectTag
         * @param in
         * @return coded bytes of the tagged object
         * @throws IOException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	var ns Name
    	off, err := ns.unpack(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"NS", err}
    	}
    	var mbox Name
    	if off, err = mbox.unpack(msg, off); err != nil {
    		return SOAResource{}, &nestedError{"MBox", err}
    	}
    	serial, off, err := unpackUint32(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"Serial", err}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top