Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,422 for setIws (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. architecture/security/istio-agent.md

    a certificate. This can be handled in various ways:
    * `GenerateSecret` may additionally write any signed certificates to disk, with `OUTPUT_CERTS` configured.
    * Users may have external CA setups that pre-configure certificates.
    * The CaClient can use JWT token for the initial setup, then switch to mTLS certificates.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. manifests/charts/README.md

    gateway in a dedicated namespace and restrict access.
    
    For large-scale gateways it is optionally possible to use a dedicated pilot in the gateway namespace.
    
    ### Additional test templates
    
    A number of helm test setups are general-purpose and should be installable in any cluster, to confirm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. 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)
  7. internal/http/dial_linux.go

    		return nil
    	}
    }
    
    // DialContext is a function to make custom Dial for internode communications
    type DialContext func(ctx context.Context, network, address string) (net.Conn, error)
    
    // NewInternodeDialContext setups a custom dialer for internode communication
    func NewInternodeDialContext(dialTimeout time.Duration, opts TCPOptions) DialContext {
    	return func(ctx context.Context, network, addr string) (net.Conn, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG2 [i-8] {s} p w0 w1 mem)
    (MOVDstore [i] {s} p w2 x:(STMG2 [i-16] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-16)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG3 [i-16] {s} p w0 w1 w2 mem)
    (MOVDstore [i] {s} p w3 x:(STMG3 [i-24] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-24)
      && setPos(v, x.Pos)
      && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top