Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 583 for representing (0.11 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__discovery.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__events.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

                  << argv[0] << " <filename or - for stdin>\n\n"
                  << "Converts TensorFlowLite flatbuffer to textual output format. "
                  << "One positional input argument representing the source of the "
                  << "flatbuffer is supported.\n";
        return 1;
      }
    
      std::string serialized_model;
      if (tflite::ReadAndVerify(argv[1], &serialized_model)) return 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/location.go

    //	                          { N: len, Type: int, Off: 0, SplitOf: parent, SplitOffset: 8}
    //	                          parent = &{N: s, Type: string}
    type LocalSlot struct {
    	N    *ir.Name    // an ONAME *ir.Name representing a stack location.
    	Type *types.Type // type of slot
    	Off  int64       // offset of slot in N
    
    	SplitOf     *LocalSlot // slot is a decomposition of SplitOf
    	SplitOffset int64      // .. at this offset.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/universe.go

    	// of less informative error messages involving bytes and runes)?
    	// NOTE(rsc): No, the error message quality is important.
    	// (Alternatively, we could introduce an OTALIAS node representing
    	// type aliases, albeit at the cost of having to deal with it everywhere).
    	ByteType = defBasic(TUINT8, BuiltinPkg, "byte")
    	RuneType = defBasic(TINT32, BuiltinPkg, "rune")
    
    	// error type
    	DeferCheckSize()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

          name: Revision
          type: string
        - description: IOP current state
          jsonPath: .status.status
          name: Status
          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
            when this object was created. It is not guaranteed to be set in happens-before
            order across separate operations. Clients may not set this value. It is represented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            return readSymbols(lines)
        }
    
        /**
         * This parses the command-line output of readelf -s and extracts all FILE symbols.
         *
         * @return list of symbols representing the source files included in the binary
         */
        @VisibleForTesting
        static List<Symbol> readSymbols(List<String> lines) {
            def symbols = []
            lines.collect { it.trim() }.grep { !it.isEmpty() }.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/OutputSpecification.groovy

        private Long counter = 1
    
        protected String toNative(String value) {
            return TextUtil.toPlatformLineSeparators(value)
        }
    
        /**
         * Returns timestamp representing 10AM today in local time.
         */
        long getTenAm() {
            return getTenAmAsDate().getTimeInMillis()
        }
    
        String getTenAmFormatted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	return v.String(), nil
    }
    
    // ParseSelectorOrDie takes a string representing a selector and returns an
    // object suitable for matching, or panic when an error occur.
    func ParseSelectorOrDie(s string) Selector {
    	selector, err := ParseSelector(s)
    	if err != nil {
    		panic(err)
    	}
    	return selector
    }
    
    // ParseSelector takes a string representing a selector and returns an
    // object suitable for matching, or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
Back to top