Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 539 for setIws (0.14 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    		return true // discard
    	}
    
    	// Only worry about simple "l = r" assignments. The OAS2*
    	// assignments mostly necessitate dynamic execution anyway.
    	if len(lhs) > 1 {
    		return false
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	nam := lhs[0].(*ir.Name)
    	return s.StaticAssign(nam, 0, rhs, nam.Type())
    }
    
    // like staticassign but we are copying an already
    // initialized value r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/text/template/parse/node.go

    	return &IdentifierNode{NodeType: NodeIdentifier, Ident: ident}
    }
    
    // SetPos sets the position. [NewIdentifier] is a public method so we can't modify its signature.
    // Chained for convenience.
    // TODO: fix one day?
    func (i *IdentifierNode) SetPos(pos Pos) *IdentifierNode {
    	i.Pos = pos
    	return i
    }
    
    // SetTree sets the parent tree for the node. [NewIdentifier] is a public method so we can't modify its signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. docs/sts/web-identity.md

    to MFA authentication challenges, etc). After successful login, the user is redirected back to the MinIO console. This redirect URL is specified as a parameter by MinIO when the user is redirected to the OpenID Provider in the beginning. For some setups, extra configuration may be required for this step to work correctly.
    
    For a simple setup where the user/client app accesses MinIO directly (i.e. with no intervening proxies/load-balancers), and each MinIO server (if there are more than one)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pkg/controller/deployment/sync.go

    		// replica sets.
    		deploymentReplicasToAdd := allowedSize - allRSsReplicas
    
    		// The additional replicas should be distributed proportionally amongst the active
    		// replica sets from the larger to the smaller in size replica set. Scaling direction
    		// drives what happens in case we are trying to scale replica sets of the same size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_pod_control.go

    	err := spc.objectMgr.DeletePod(pod)
    	spc.recordPodEvent("delete", set, pod, err)
    	return err
    }
    
    // ClaimsMatchRetentionPolicy returns false if the PVCs for pod are not consistent with set's PVC deletion policy.
    // An error is returned if something is not consistent. This is expected if the pod is being otherwise updated,
    // but a problem otherwise (see usage of this method in UpdateStatefulPod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. test/codegen/memops.go

    	d *= b[i+3]
    	// amd64: `DIVSS\t16\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), X[0-9]+`
    	d /= b[i+4]
    	return c, d
    }
    
    func storeTest(a []bool, v int, i int) {
    	// amd64: `BTL\t\$0,`,`SETCS\t4\([A-Z]+[0-9]*\)`
    	a[4] = v&1 != 0
    	// amd64: `BTL\t\$1,`,`SETCS\t3\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)`
    	a[3+i] = v&2 != 0
    }
    
    func bitOps(p *[12]uint64) {
    	// amd64: `ORQ\t\$8, \(AX\)`
    	p[0] |= 8
    	// amd64: `ORQ\t\$1073741824, 8\(AX\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    _Depends on_: All tasks which contribute to the source set's compilation classpath
    +
    Compiles the given source set's Java source files using the JDK compiler.
    
    `process__SourceSet__Resources` — link:{groovyDslPath}/org.gradle.api.tasks.Copy.html[Copy]::
    Copies the given source set's resources into the resources directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. cmd/endpoint.go

    			return err
    		}
    	}
    	return nil
    }
    
    // SetPoolIndex sets a specific pool number to this node
    func (endpoint *Endpoint) SetPoolIndex(i int) {
    	endpoint.PoolIdx = i
    }
    
    // SetSetIndex sets a specific set number to this node
    func (endpoint *Endpoint) SetSetIndex(i int) {
    	endpoint.SetIdx = i
    }
    
    // SetDiskIndex sets a specific disk number to this node
    func (endpoint *Endpoint) SetDiskIndex(i int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        public void setJdk(Jdk jdk) {
            this.jdk = jdk;
        }
    
        /**
         * The vcs used by the project.
         */
        public String getVcs() {
            return vcs;
        }
    
        public void setVcs(String vcs) {
            this.vcs = vcs;
        }
    
        /**
         * The project-level libraries of the IDEA project.
         */
        public Set<ProjectLibrary> getProjectLibraries() {
            return projectLibraries;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         * <p>
         * See the examples in the docs for {@link IdeaProject}.
         */
        public String getVcs() {
            return vcs;
        }
    
        public void setVcs(String vcs) {
            this.vcs = vcs;
        }
    
        /**
         * The wildcard resource patterns.
         * <p>
         * See the examples in the docs for {@link IdeaProject}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top