Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,052 for bkts (0.04 sec)

  1. cmd/site-replication-utils.go

    	DeplID                        string                      `json:"dId" msg:"did"`
    	BucketStatuses                map[string]ResyncStatusType `json:"buckets" msg:"bkts"`
    	TotBuckets                    int                         `json:"totbuckets" msg:"tb"`
    	TargetReplicationResyncStatus `json:"currSt" msg:"cst"`
    }
    
    func (s *SiteResyncStatus) clone() SiteResyncStatus {
    	if s == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  2. test/codegen/bits.go

    func bitSetTest(x int) bool {
    	// amd64:"ANDL\t[$]9, AX"
    	// amd64:"CMPQ\tAX, [$]9"
    	return x&9 == 9
    }
    
    // mask contiguous one bits
    func cont1Mask64U(x uint64) uint64 {
    	// s390x:"RISBGZ\t[$]16, [$]47, [$]0,"
    	return x & 0x0000ffffffff0000
    }
    
    // mask contiguous zero bits
    func cont0Mask64U(x uint64) uint64 {
    	// s390x:"RISBGZ\t[$]48, [$]15, [$]0,"
    	return x & 0xffff00000000ffff
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

            # Unknown:
            *)
                echo "The wheel's name is in an unknown format."
                exit 1
                ;;
        esac
        # >&3 forces output in bats even if the test passes. See
        # https://bats-core.readthedocs.io/en/stable/writing-tests.html#printing-to-the-terminal
        echo "# Size of $TF_WHEEL is $WHEEL_MEGABYTES / $LARGEST_OK_SIZE megabytes." >&3
        test "$WHEEL_MEGABYTES" -le "$LARGEST_OK_SIZE"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/organizingGradleProjects/configureProjectUsingScript/kotlin/build.gradle.kts

    apply(from = "other.gradle.kts")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/settings.gradle.kts

    rootProject.name = "project-evaluate-events"
    include("project-a", "project-b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 144 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/multiproject/customLayout/kotlin/settings.gradle.kts

    println(rootProject.name)
    println(project(":project-a").name)
    // end::lookup-project[]
    
    // tag::change-project[]
    project(":project-a").projectDir = file("custom/my-project-a")
    project(":project-a").buildFileName = "project-a.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/build.gradle.kts

    val buildProfile: String? by project  // <1>
    
    apply(from = "profile-${buildProfile ?: "default"}.gradle.kts")  // <2>
    
    tasks.register("greeting") {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        val message = project.extra["message"]
        doLast {
            println(message)  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 390 bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     */
    
    plugins {
        id("org.gradle.kotlin-dsl.ktlint-convention")
    }
    
    tasks {
        runKtlintCheckOverKotlinScripts {
            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
        tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 01 11:07:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/build.gradle.kts

                }
            }
        }
    }
    
    // Apply the plugin
    apply<GreetingPlugin>()
    // end::no-script-plugin[]
    
    // tag::script-plugin[]
    apply(from = "other.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 407 bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    include("app")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 680 bytes
    - Viewed (0)
Back to top