Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for rulesv6 (0.73 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    After a configuration of any type has been observed, it should be considered immutable.
    This validation covers the following properties of a configuration:
    
    * Resolution Strategy
    * Dependencies
    * Constraints
    * Exclude Rules
    * Artifacts
    * Role (consumable, resolvable, dependency scope)
    * Hierarchy (`extendsFrom`)
    * Others (Transitive, Visible)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .exampleblock .listingblock {
    	margin: 0;
    }
    
    /*
     * Ensure that blocks of code do not wrap by applying the behavior of `[listing%nowrap]` by default.
     *
     * These styles are copied from a CSS ruleset in asciidoctor.css that has the same group of
     * selectors except that they end with `.nowrap`.
     */
    .openblock .content {
    	background: var(--admonition-background);
    	margin-bottom: 1.25em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            virtualEdges.add(edge);
            edge.markUsed();
            discoveredEdges.add(edge);
            edge.getSelector().use(false);
        }
    
    
        /**
         * Execute any dependency substitution rules that apply to this dependency.
         *
         * This may be better done as a decorator on ConfigurationMetadata.getDependencies()
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    // with the publicly trusted TLS certificate ecosystem and its policies and
    // constraints.
    //
    // On macOS and Windows, certificate verification is handled by system APIs, but
    // the package aims to apply consistent validation rules across operating
    // systems.
    package x509
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/ecdh"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"crypto/sha1"
    	"crypto/x509/pkix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    			return objInfo, err
    		}
    		replcfg, err = getReplicationConfig(ctx, bucket)
    		if err != nil {
    			return objInfo, err
    		}
    	}
    
    	// expiration attempted on a bucket with no lifecycle
    	// rules shall be rejected.
    	if lc == nil && opts.Expiration.Expire {
    		if opts.VersionID != "" {
    			return objInfo, VersionNotFound{
    				Bucket:    bucket,
    				Object:    object,
    				VersionID: opts.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    When using GOPATH, the patterns match against the import path corresponding to
    the root of the version control repository.
    
    The general form of the GOVCS setting is a comma-separated list of
    pattern:vcslist rules. The pattern is a glob pattern that must match
    one or more leading elements of the module or import path. The vcslist
    is a pipe-separated list of allowed version control commands, or "all"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		}
    	case *dwarf.TypedefType:
    		// C has much more relaxed rules than Go for
    		// implicit type conversions. When the parameter
    		// is type T defined as *X, simulate a little of the
    		// laxness of C by making the argument *X instead of T.
    		if ptr, ok := base(dt.Type).(*dwarf.PtrType); ok {
    			// Unless the typedef happens to point to void* since
    			// Go has special rules around using unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    A question you may ask yourself at this point is what happens when inclusion and exclusion patterns overlap? Which pattern wins? Here are the basic rules:
    
    * If there are no explicit inclusions or exclusions, everything is included
    * If at least one inclusion is specified, only files and directories matching the patterns are included
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

        fi
    
        if [[ -z "${AUDIT_POLICY_FILE}" ]]; then
          cat <<EOF > "${TMP_DIR}"/kube-audit-policy-file
    # Log all requests at the Metadata level.
    apiVersion: audit.k8s.io/v1
    kind: Policy
    rules:
    - level: Metadata
    EOF
          AUDIT_POLICY_FILE="${TMP_DIR}/kube-audit-policy-file"
        fi
    
        APISERVER_LOG=${LOG_DIR}/kube-apiserver.log
        # shellcheck disable=SC2086
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    		if httpFilter.Name == wellknown.HTTPRoleBasedAccessControl {
    			rbac := &rbachttp.RBAC{}
    			if err := httpFilter.GetTypedConfig().UnmarshalTo(rbac); err == nil {
    				policies := []string{}
    				for polName := range rbac.Rules.Policies {
    					policies = append(policies, polName)
    				}
    				return policies, nil
    			}
    		}
    	}
    
    	return []string{}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top