Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for deim (0.07 sec)

  1. src/text/template/parse/lex.go

    	l.pos += Pos(len(leftComment))
    	x := strings.Index(l.input[l.pos:], rightComment)
    	if x < 0 {
    		return l.errorf("unclosed comment")
    	}
    	l.pos += Pos(x + len(rightComment))
    	delim, trimSpace := l.atRightDelim()
    	if !delim {
    		return l.errorf("comment ends before closing delimiter")
    	}
    	i := l.thisItem(itemComment)
    	if trimSpace {
    		l.pos += trimMarkerLen
    	}
    	l.pos += Pos(len(l.rightDelim))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            value {
              list {
                shape {
                  dim {
                    size: -1
                  }
                  dim {
                    size: 1
                  }
                }
                shape {
                  dim {
                    size: -1
                  }
                  dim {
                    size: 1
                  }
                }
              }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

          assert(index[i] < shape[i]);
          assert(index[i] >= 0);
        }
    #endif  // NDEBUG
        for (int64_t dim = shape.size() - 1; dim >= 0; --dim) {
          if (dim == fixed_axis) continue;
          ++index[dim];
          if (index[dim] < shape[dim]) return std::move(index);
          index[dim] = 0;
        }
        return std::nullopt;
      }
    
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/Config.java

         * value containting a <tt>delim</tt> separated list of hostnames and/or
         * ipaddresses.
         */
    
        public static InetAddress[] getInetAddressArray( String key, String delim, InetAddress[] def ) {
            String p = getProperty( key );
            if( p != null ) {
                StringTokenizer tok = new StringTokenizer( p, delim );
                int len = tok.countTokens();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  5. src/encoding/json/stream.go

    	case tokenArrayStart, tokenArrayValue:
    		dec.tokenState = tokenArrayComma
    	case tokenObjectValue:
    		dec.tokenState = tokenObjectComma
    	}
    }
    
    // A Delim is a JSON array or object delimiter, one of [ ] { or }.
    type Delim rune
    
    func (d Delim) String() string {
    	return string(d)
    }
    
    // Token returns the next JSON token in the input stream.
    // At the end of the input stream, Token returns nil, [io.EOF].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. docs/it/docs/index.md

        * Autocompletamento.
        * Controllo sulle annotazioni di tipo.
    * Validazione dei dati:
        * Errori chiari e automatici quando i dati sono invalidi.
        * Validazione anche per gli oggetti JSON più complessi.
    * <abbr title="anche noto come: serializzazione, parsing, marshalling">Conversione</abbr> dei dati di input: da risorse esterne a dati e tipi di Python. È possibile leggere da:
        * JSON.
        * Path parameters.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.depth=Tiefe
    labels.excludedPaths=Ausgeschlossene Pfade beim Crawling
    labels.excludedUrls=Ausgeschlossene URLs beim Crawling
    labels.excludedDocPaths=Ausgeschlossene Pfade bei der Indizierung
    labels.excludedDocUrls=Ausgeschlossene URLs bei der Indizierung
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Eingeschlossene Pfade beim Crawling
    labels.includedUrls=Eingeschlossene URLs beim Crawling
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/response-model.md

    ... das scheitert, da die Typannotation kein Pydantic-Typ ist, und auch keine einzelne `Response`-Klasse, oder -Unterklasse, es ist eine Union (eines von beiden) von `Response` und `dict`.
    
    ### Responsemodell deaktivieren
    
    Beim Beispiel oben fortsetzend, mögen Sie vielleicht die standardmäßige Datenvalidierung, -Dokumentation, -Filterung, usw., die von FastAPI durchgeführt wird, nicht haben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

        for (const int64_t dim : batch_dimensions) {
          batch_dimensions_.axes.push_back(dim);
          batch_dimensions_.sizes.push_back(type.getDimSize(dim));
        }
    
        for (const int64_t dim : contracting_dimensions) {
          contracting_dimensions_.axes.push_back(dim);
          contracting_dimensions_.sizes.push_back(type.getDimSize(dim));
        }
    
        for (int64_t dim = 0; dim < rank; ++dim) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/html/template/transition.go

    	i := eatWhiteSpace(s, 0)
    	if i == len(s) {
    		return c, len(s)
    	}
    	// Find the attribute delimiter.
    	delim := delimSpaceOrTagEnd
    	switch s[i] {
    	case '\'':
    		delim, i = delimSingleQuote, i+1
    	case '"':
    		delim, i = delimDoubleQuote, i+1
    	}
    	c.state, c.delim = attrStartStates[c.attr], delim
    	return c, i
    }
    
    // tHTMLCmt is the context transition function for stateHTMLCmt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top