Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for timediv (0.26 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      auto go_backwards_attr = func_op->getAttrOfType<BoolAttr>("tf.go_backwards");
    
      if (go_backwards_attr != nullptr && go_backwards_attr.getValue()) {
        int time_dim = time_majored ? 0 : 1;
        final_inputs = Reverse(builder, final_inputs, time_dim, final_input_type,
                               func_op.getLoc());
      }
    
      int64_t batch = time_majored ? final_input_type.getDimSize(1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. pkg/controller/storageversiongc/gc_controller.go

    	logger.Info("Starting storage version garbage collector")
    
    	if !cache.WaitForCacheSync(ctx.Done(), c.leasesSynced, c.storageVersionSynced) {
    		utilruntime.HandleError(fmt.Errorf("timed out waiting for caches to sync"))
    		return
    	}
    
    	// Identity lease deletion and storageversion update don't happen too often. Start one
    	// worker for each of them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

        val readTimeout = soTimeout
        try {
          soTimeout = 1
          !source.exhausted()
        } finally {
          soTimeout = readTimeout
        }
      } catch (_: SocketTimeoutException) {
        true // Read timed out; socket is good.
      } catch (_: IOException) {
        false // Couldn't read; socket is closed.
      }
    }
    
    internal inline fun threadName(
      name: String,
      block: () -> Unit,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/net/net.go

    	Err         string // description of the error
    	Name        string // name looked for
    	Server      string // server used
    	IsTimeout   bool   // if true, timed out; not all timeouts set this
    	IsTemporary bool   // if true, error is temporary; not all errors set this
    
    	// IsNotFound is set to true when the requested name does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. internal/dsync/drwmutex.go

    			}
    		}(index, c)
    	}
    
    	// Wait until we have either
    	//
    	// a) received all refresh responses
    	// b) received too many refreshed for quorum to be still possible
    	// c) timed out
    	//
    	lockNotFound, lockRefreshed := 0, 0
    	done := false
    
    	for i := 0; i < len(restClnts); i++ {
    		select {
    		case refreshResult := <-ch:
    			if refreshResult.offline {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

            .socketPolicy(NoResponse)
            .build(),
        )
        val webSocket: WebSocket = newWebSocket()
        clientListener.assertFailure(
          SocketTimeoutException::class.java,
          "timeout",
          "Read timed out",
        )
        assertThat(webSocket.close(1000, null)).isFalse()
      }
    
      /**
       * There's no read timeout when reading the first byte of a new frame. But as soon as we start
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                    }
                }
                LOGGER.debug("Cancel: daemon is still busy after grace period. Will force stop.");
                stopNow("cancel requested but timed out");
                return DaemonStopState.Forced;
            } finally {
                lock.unlock();
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	}
    	// check client to make sure receive response.
    	select {
    	case <-graceCh:
    		t.Logf("server shutdown gracefully.")
    	case <-time.After(30 * time.Second):
    		t.Errorf("Timed out waiting for response.")
    	}
    }
    
    func TestWarningWithRequestTimeout(t *testing.T) {
    	type result struct {
    		err        interface{}
    		stackTrace string
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/net/http/client.go

    // was an HTTP protocol error. A non-2xx response doesn't cause an
    // error. Any returned error will be of type [*url.Error]. The url.Error
    // value's Timeout method will report true if the request timed out.
    //
    // When err is nil, resp always contains a non-nil resp.Body.
    // Caller should close resp.Body when done reading from it.
    //
    // Get is a wrapper around DefaultClient.Get.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/internal/trace/event/go122/event.go

    	},
    	EvExperimentalBatch: event.Spec{
    		Name:    "ExperimentalBatch",
    		Args:    []string{"exp", "gen", "m", "time"},
    		HasData: true, // Easier to represent for raw readers.
    	},
    
    	// "Timed" Events.
    	EvProcsChange: event.Spec{
    		Name:         "ProcsChange",
    		Args:         []string{"dt", "procs_value", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvProcStart: event.Spec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top