Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for dotV (0.13 sec)

  1. cmd/sts-handlers_test.go

    		if err != nil {
    			c.Fatalf("normalize err: %v", err)
    		}
    		return normalizedDN
    	}
    
    	actualUserDN := mustNormalizeDN("uid=svc.algorithm,OU=swengg,DC=min,DC=io")
    
    	// \uFE52 is the unicode dot SMALL FULL STOP used below:
    	userDNWithUnicodeDot := "uid=svc﹒algorithm,OU=swengg,DC=min,DC=io"
    
    	if err = s.adm.SetPolicy(ctx, policy, userDNWithUnicodeDot, false); err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    				}
    				if len(m.serverName) != 0 {
    					// Multiple names of the same name_type are prohibited.
    					return false
    				}
    				m.serverName = string(serverName)
    				// An SNI value may not include a trailing dot.
    				if strings.HasSuffix(m.serverName, ".") {
    					return false
    				}
    			}
    		case extensionStatusRequest:
    			// RFC 4366, Section 3.6
    			var statusType uint8
    			var ignored cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    	// a letter, underscore, or dot).
    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    	case nil:
    		panic("unreachable")
    
    	case *syntax.BadExpr:
    		goto Error // error was reported before
    
    	case *syntax.Name:
    		check.ident(x, e, nil, false)
    
    	case *syntax.DotsType:
    		// dots are handled explicitly where they are legal
    		// (array composite literals and parameter lists)
    		check.error(e, BadDotDotDotSyntax, "invalid use of '...'")
    		goto Error
    
    	case *syntax.BasicLit:
    		if e.Bad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    				return false, line
    			}
    		}
    	}
    	return true, ""
    }
    
    func (ctxt *context) match(name string) bool {
    	if name == "" {
    		return false
    	}
    
    	// Tags must be letters, digits, underscores or dots.
    	// Unlike in Go identifiers, all digits are fine (e.g., "386").
    	for _, c := range name {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			return false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	},
    	ErrParseAsteriskIsNotAloneInSelectList: {
    		Code:           "ParseAsteriskIsNotAloneInSelectList",
    		Description:    "Other expressions are not allowed in the SELECT list when '*' is used without dot notation in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseCannotMixSqbAndWildcardInSelectList: {
    		Code:           "ParseCannotMixSqbAndWildcardInSelectList",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"message": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        void setDescription(@Nullable String description);
    
        /**
         * <p>Returns the group of this project. Gradle always uses the {@code toString()} value of the group. The group
         * defaults to the path with dots as separators.</p>
         *
         * @return The group of this project. Never returns null.
         */
        Object getGroup();
    
        /**
         * <p>Sets the group of this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

    // CHECK: %[[BROADCAST_2:.*]] = "tf.BroadcastTo"(%[[WEIGHT]], %[[CONCAT_2]]) : (tensor<1024x3xi8>, tensor<3xi64>) -> tensor<?x1024x3xi8>
    // CHECK: %[[DOT:.*]] = "tf.XlaDotV2"(%[[BROADCAST_1]], %[[BROADCAST_2]])
    }
    
    // -----
    
    module attributes {} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// IngressRuleValue. If the host is unspecified, the Ingress routes all
    	// traffic based on the specified IngressRuleValue.
    	//
    	// Host can be "precise" which is a domain name without the terminating dot of
    	// a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
    	// prefixed with a single wildcard label (e.g. "*.foo.com").
    	// The wildcard character '*' must appear by itself as the first DNS label and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top