Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for a$ (0.04 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                <![CDATA[
                  The timezone the contributor is in. Typically, this is a number in the range
                  <a href="http://en.wikipedia.org/wiki/UTC%E2%88%9212:00">-12</a> to <a href="http://en.wikipedia.org/wiki/UTC%2B14:00">+14</a>
                  or a valid time zone id like "America/Montreal" (UTC-05:00) or "Europe/Paris" (UTC+01:00).
                ]]>
              </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1 + self.val2 == ['a', 'b', 'c']",
    				"self.val1 + ['c', 'd'] == ['a', 'b', 'c', 'd']",
    
    				// Join function
    				"self.val1.join('-') == 'a-b-c'",
    				"['a', 'b', 'c'].join('-') == 'a-b-c'",
    				"self.val1.join() == 'abc'",
    				"['a', 'b', 'c'].join() == 'abc'",
    
    				// CEL sets functions
    				"sets.contains(['a', 'b'], [])",
    				"sets.contains(['a', 'b'], ['b'])",
    				"!sets.contains(['a', 'b'], ['c'])",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	switch a := a.(type) {
    	case *ArgumentPack:
    		for _, a := range a.Args {
    			if !ps.isEmpty(a) {
    				return false
    			}
    		}
    		return true
    	case *ExprList:
    		return len(a.Exprs) == 0
    	case *PackExpansion:
    		return a.Pack != nil && ps.isEmpty(a.Base)
    	default:
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "format": "time_series",
              "instant": false,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{bucket,range}}",
              "refId": "A",
              "step": 300
            }
          ],
          "title": "Object Size Distribution",
          "type": "bargauge"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Inserts a dimension of 1 into a tensor's shape.";
    
      let description = [{
    Given a tensor `input`, this operation inserts a dimension of 1 at the
    dimension index `axis` of `input`'s shape. The dimension index `axis` starts at
    zero; if you specify a negative number for `axis` it is counted backward from
    the end.
    
    This operation is useful if you want to add a batch dimension to a single
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	}
    	return C_GOK
    }
    
    func (c *ctxt9) aclass(a *obj.Addr) int {
    	switch a.Type {
    	case obj.TYPE_NONE:
    		return C_NONE
    
    	case obj.TYPE_REG:
    		return c.aclassreg(a.Reg)
    
    	case obj.TYPE_MEM:
    		if a.Index != 0 {
    			if a.Name != obj.NAME_NONE || a.Offset != 0 {
    				c.ctxt.Logf("Unexpected Instruction operand index %d offset %d class %d \n", a.Index, a.Offset, a.Class)
    
    			}
    			return C_XOREG
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	if p != nil {
    		ldflags := BuildLdflags.For(p)
    		for i := len(ldflags) - 1; i >= 0; i-- {
    			a := ldflags[i]
    			if a == "-linkmode=external" ||
    				a == "-linkmode" && i+1 < len(ldflags) && ldflags[i+1] == "external" {
    				return a
    			} else if a == "-linkmode=internal" ||
    				a == "-linkmode" && i+1 < len(ldflags) && ldflags[i+1] == "internal" {
    				return ""
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. fastapi/routing.py

                # e.g. UserInDB (containing hashed_password) could be a subclass of User
                # that doesn't have the hashed_password. But because it's a subclass, it
                # would pass the validation and be returned as is.
                # By being a new field, no inheritance will be passed as is. A new model
                # will always be created.
                # TODO: remove when deprecating Pydantic v1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status ConvertNode(const Node& node);
    
      // If the input graph represents a while-loop, the edges pointing from a
      // "NextIteration" node to a "Merge" node add cyclic dependencies and make the
      // topological sorting impossible. We need to remove these edges from the
      // input graph to infer shapes and construct a Function. For each
      // "NextIteration" node, there are two operations, "NextIteration.source"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. pkg/apis/core/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Binding) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top