Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for set6 (0.09 sec)

  1. src/internal/bytealg/compare_ppc64x.s

    #else
    #define _LDBEX	MOVD
    #define _LWBEX	MOVW
    #define _LHBEX	MOVH
    #endif
    
    #ifdef GOPPC64_power9
    #define SETB_CR0(rout) SETB CR0, rout
    #define SETB_CR1(rout) SETB CR1, rout
    #define SETB_INIT()
    #define SETB_CR0_NE(rout) SETB_CR0(rout)
    #else
    // A helper macro to emulate SETB on P8. This assumes
    // -1 is in R20, and 1 is in R21. crxlt and crxeq must
    // also be the same CR field.
    #define _SETB(crxlt, crxeq, rout) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

            // Iterate over the files in the collection
            collection.each { File file ->
                println file.name
            }
    
            // Convert the collection to various types
            Set set = collection.files
            Set set2 = collection as Set
            List list = collection as List
            String path = collection.asPath
            File file = collection.singleFile
    
            // Add and subtract collections
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    			set := newStatefulSet(3)
    			set.Spec.PersistentVolumeClaimRetentionPolicy = policy
    			set.Status.CollisionCount = new(int32)
    			rev0 := newRevisionOrDie(set, 1)
    			set1 := set.DeepCopy()
    			set1.Spec.Template.Spec.Containers[0].Image = "foo"
    			set1.Status.CurrentRevision = rev0.Name
    			set1.Status.CollisionCount = new(int32)
    			rev1 := newRevisionOrDie(set1, 2)
    			set2 := set1.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. test/codegen/bool.go

    	// ppc64x:"RLDICL",-"CMPW",-"ISEL"
    	b := x&1 != 0
    	return c && b
    }
    
    func convertNeq0L(x uint32, c bool) bool {
    	// amd64:"ANDL\t[$]1",-"SETB"
    	// ppc64x:"RLDICL",-"CMPW",-"ISEL"
    	b := x&1 != 0
    	return c && b
    }
    
    func convertNeq0Q(x uint64, c bool) bool {
    	// amd64:"ANDL\t[$]1",-"SETB"
    	// ppc64x:"RLDICL",-"CMP",-"ISEL"
    	b := x&1 != 0
    	return c && b
    }
    
    func convertNeqBool32(x uint32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 22:12:32 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/CyclicalManagedTypeIntegrationTest.groovy

                }
    
                @Managed
                interface B {
                    C getC()
                }
    
                @Managed
                interface C {
                    A getA()
                    void setA(A a)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void a(A a) {
                        a.name = "a"
                        a.b.c.a = a
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    Java Modules are a feature of Java itself, available since Java 9, that allows for better encapsulation.
    
    In Gradle, each _source set_ containing Java sources can be turned into a module by adding a `module-info.java` file.
    Typically, in a project with Java Modules like this one, the _main_ source set of a subproject represents a module.
    
    ```
    src
    └── main
        └── java
            └── module-info.java
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

                // 011 00000000 UNDEF  notype ()    External     | ?life@@YAHXZ (int __cdecl life(void))
                // 012 00000000 SECT4  notype ()    External     | _main
                // 013 00000000 SECT6  notype       Static       | .chks64
                def tokens = line.split('\\s+')
                def pipeIndex = tokens.findIndexOf { it == '|' }
                assert pipeIndex != -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. cmd/metrics-v3-cluster-erasure-set.go

    		labels := []string{poolIDL, poolLV, setIDL, setLV}
    		m.Set(erasureSetReadQuorum, float64(h.ReadQuorum), labels...)
    		m.Set(erasureSetWriteQuorum, float64(h.WriteQuorum), labels...)
    		m.Set(erasureSetOnlineDrivesCount, float64(h.HealthyDrives), labels...)
    		m.Set(erasureSetHealingDrivesCount, float64(h.HealingDrives), labels...)
    		m.Set(erasureSetHealth, b2f(h.Healthy), labels...)
    
    		readHealthy := true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. buildscripts/verify-healing-empty-erasure-set.sh

    #!/bin/bash -e
    #
    
    set -E
    set -o pipefail
    
    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    WORK_DIR="$PWD/.verify-$RANDOM"
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server)
    
    function start_minio_3_node() {
    	export MINIO_ROOT_USER=minio
    	export MINIO_ROOT_PASSWORD=minio123
    	export MINIO_ERASURE_SET_DRIVE_COUNT=6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/mini.go

    func (n *miniNode) SetTypecheck(x uint8) {
    	if x > 2 {
    		panic(fmt.Sprintf("cannot SetTypecheck %d", x))
    	}
    	n.bits.set2(miniTypecheckShift, x)
    }
    
    func (n *miniNode) Walked() bool     { return n.bits&miniWalked != 0 }
    func (n *miniNode) SetWalked(x bool) { n.bits.set(miniWalked, x) }
    
    // Empty, immutable graph structure.
    
    func (n *miniNode) Init() Nodes { return Nodes{} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top