Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for meaningful (0.53 sec)

  1. LICENSE

        is invoked, then you must make a good faith effort to ensure that,
        in the event an application does not supply such function or
        table, the facility still operates, and performs whatever part of
        its purpose remains meaningful.
    
        (For example, a function in a library to compute square roots has
        a purpose that is entirely well-defined independent of the
        application.  Therefore, Subsection 2d requires that any
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  2. src/internal/trace/event.go

    // trace was taken, and so is possible to correlate with timestamps
    // for other traces taken on the same machine using the same clock
    // (i.e. no reboots in between).
    //
    // The actual absolute value of the timestamp is only meaningful in
    // relation to other timestamps from the same clock.
    //
    // BUG: Timestamps coming from traces on Windows platforms are
    // only comparable with timestamps from the same trace. Timestamps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    // +union
    type LimitResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        // TODO(ycao): Support constant output.
        out_desc.is_constant = false;
        TF_RETURN_IF_ERROR(XLAShapeToTensorShape(shape, &out_desc.shape));
        // Input_index is only meaningful for resource output. Setting it to
        // meaningless value -1 for non resource outputs.
        out_desc.input_index =
            it != output_to_input_alias.end() ? it->getSecond() : -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    // +union
    type LimitResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/OrderingTest.java

          }
        },
        ;
    
        abstract <T extends @Nullable Object> Scenario<?> mutate(Scenario<T> scenario);
      }
    
      /**
       * A dummy object we create so that we can have something meaningful to have a compound ordering
       * over.
       */
      private static class Composite<T extends @Nullable Object> implements Comparable<Composite<T>> {
        final T value;
        final int rank;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    // +union
    type LimitResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    There are also a few properties of the whole component that can be changed:
    
    - The _component level attributes_, currently the only meaningful attribute there is `org.gradle.status`
    - The _status scheme_ to influence interpretation of the `org.gradle.status` attribute during version selection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    )
    
    type testGroup []struct {
    	desc string
    	// Small changes to the input profile produce large changes to the golden output
    	// files. This makes it difficult to spot meaningful changes in pull requests.
    	// By default we hide these changes to make developers life's a bit easier. However,
    	// it is still useful to sometimes override this behavior and show the full diff.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    			s.walk(dot, list)
    		}
    	} else if elseList != nil {
    		s.walk(dot, elseList)
    	}
    }
    
    // IsTrue reports whether the value is 'true', in the sense of not the zero of its type,
    // and whether the value has a meaningful truth value. This is the definition of
    // truth used by if and other such actions.
    func IsTrue(val any) (truth, ok bool) {
    	return isTrue(reflect.ValueOf(val))
    }
    
    func isTrue(val reflect.Value) (truth, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top