Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 197 for light (0.05 sec)

  1. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    y2="15"/></svg>',"arrow-left":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" points="10 14 5 9.5 10 5"/><line fill="none" stroke="#000" x1="16" y1="9.5" x2="5" y2="9.52"/></svg>',"arrow-right":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" points="10 5 15 9.5 10 14"/><line fill="none" stroke="#000" x1="4" y1="9.5" x2="15" y2="9.5"/></svg>',"arrow-up":'<svg width="20"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    // right places, that is, between arg pairs in which neither is a string.
    func TestBlank(t *testing.T) {
    	got := Sprint("<", 1, ">:", 1, 2, 3, "!")
    	expect := "<1>:1 2 3!"
    	if got != expect {
    		t.Errorf("got %q expected %q", got, expect)
    	}
    }
    
    // TestBlankln checks that Sprintln (and hence Println, Fprintln) puts spaces in
    // the right places, that is, between all arg pairs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// '*/*' means all resources and their subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// Depending on the enclosing object, subresources might not be allowed.
    	// Required.
    	Resources []string
    
    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // If wildcard is present, the validation rule will ensure resources do not
      // overlap with each other.
      //
      // Depending on the enclosing object, subresources might not be allowed.
      // Required.
      // +listType=atomic
      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    		}
    	} else if named != len(list) {
    		// some named or we're in a type parameter list => all must be named
    		var errPos token.Pos // left-most error position (or invalid)
    		var typ ast.Expr     // current type (from right to left)
    		for i := len(list) - 1; i >= 0; i-- {
    			if par := &list[i]; par.typ != nil {
    				typ = par.typ
    				if par.name == nil {
    					errPos = typ.Pos()
    					n := ast.NewIdent("_")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         * <p>
         * {@code -rf :artifactId} will pick up the first module which matches, but when multiple modules in the reactor
         *   have the same artifactId, effective failed module might be later in build reactor.
         * This means that developer will either have to type groupId or wait for build execution of all modules which
         *   were fine, but they are still before one which reported errors.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/runtime/map.go

    // return the keys in walk order (bucket #, then overflow
    // chain order, then bucket index).  To maintain iteration
    // semantics, we never move keys within their bucket (if
    // we did, keys might be returned 0 or 2 times).  When
    // growing the table, iterators remain iterating through the
    // old table and must check the new table if the bucket
    // they are iterating through has been moved ("evacuated")
    // to the new table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    Creates a dataset that invokes its 'next' region to generate elements. Conceptually,
    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    MakeIterator / IteratorGetNext. Note that the actual TF implementation differs: It
    generates the next element just in time, during IteratorGetNext.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                                                 builder.getUnitAttr()));
        op_state.addOperands(ArrayRef<Value>(none_operands));
      }
    
      if (op_name == "tfl.lstm") {
        // TODO(b/147587779): add the right region if region is empty.
        op_state.addRegion();
        TF_CHECK_OK(AddOpIntermediatesForLstm(op, intermediate_types, op_state, loc,
                                              builder));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // The time routines provide no way to get absolute time
    // (seconds since zero), but we need it to compute the right
    // answer for bizarre roundings like "to the nearest 3 ns".
    // Compute as t - year1 = (t - 1970) + (1970 - 2001) + (2001 - 1).
    // t - 1970 is returned by Unix and Nanosecond.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top