Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for feedsif (0.1 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/acrosscall.go

    // {"Flags":0,"ParamFlags":[32],"ResultFlags":null}
    // callsite: acrosscall.go:58:9|0 flagstr "" flagval 0 score 8 mask 0 maskstr ""
    // <endcallsites>
    // <endfuncpreamble>
    func T_feeds_if_via_call(x int) {
    	feedsif(x)
    }
    
    // acrosscall.go T_feeds_if_via_call_conditional 69 0 1
    // ParamFlags
    //   0 ParamMayFeedIfOrSwitch
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[64],"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// Parameter value feeds unmodified into a top level indirect
    	// function call (assumes parameter is of function type).
    	ParamFeedsIndirectCall
    
    	// Parameter value feeds unmodified into an indirect function call
    	// that is conditional/nested (not guaranteed to execute). Assumes
    	// parameter is of function type.
    	ParamMayFeedIndirectCall
    
    	// Parameter value feeds unmodified into a top level "switch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/cc/client/client_session.cc

                              std::vector<Tensor>* outputs,
                              RunMetadata* run_metadata) const {
      std::vector<std::pair<string, Tensor>> feeds;
      feeds.reserve(inputs.size());
      for (auto const& feed : inputs) {
        TF_RETURN_IF_ERROR(feed.second.status);
        feeds.emplace_back(std::piecewise_construct,
                           std::forward_as_tuple(feed.first.name()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_chained_indirect_call(x, y int) {
    	// Here 'returnsFunc' returns an inlinable func that feeds
    	// directly into a call (no named intermediate).
    	G += returnsFunc(x - y)(x + y)
    }
    
    // returns2.go T_chained_conc_iface_call 144 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0,0],"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

        }
        i += Character.charCount(codePoint)
      }
    }
    
    /**
     * Returns a substring of `input` on the range `[pos..limit)` with the following
     * transformations:
     *
     *  * Tabs, newlines, form feeds and carriage returns are skipped.
     *
     *  * In queries, ' ' is encoded to '+' and '+' is encoded to "%2B".
     *
     *  * Characters in `encodeSet` are percent-encoded.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    		Status: metav1.StatusSuccess,
    	}})
    	metrics.IncStreamTranslatorRequest(req.Context(), strconv.Itoa(http.StatusOK))
    }
    
    // translatorSizeQueue feeds the size events from the WebSocket
    // resizeChan into the SPDY client input. Implements TerminalSizeQueue
    // interface.
    type translatorSizeQueue struct {
    	resizeChan chan remotecommand.TerminalSize
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top