Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for while_1 (0.15 sec)

  1. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        string diff;                                                  \
        EXPECT_TRUE(EqualFunctionDefLibrary(expected, actual, &diff)) \
            << diff << "\nActual: " << actual.DebugString();          \
      } while (false)
    
    REGISTER_OP("InputTest")
        .Output("o: float")
        .SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
          c->set_output(0, c->UnknownShape());
          return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return false;
    
      auto i1 = tail_type.getShape().rbegin();
      auto reduced_e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
    
      while ((std::distance(i1, reduced_e1) > 0) && (*(reduced_e1 - 1) == 1)) {
        reduced_e1--;
      }
    
      return (std::distance(i1, reduced_e1) > 0) &&
             (std::distance(i1, reduced_e1) <= full_type.getRank()) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    type stringTestList []struct {
    	name, got, exp string
    }
    
    func TestTranslateTimestampSince(t *testing.T) {
    	tl := stringTestList{
    		{"a while from now", translateTimestampSince(metav1.Time{Time: time.Now().Add(2.1e9)}), "<invalid>"},
    		{"almost now", translateTimestampSince(metav1.Time{Time: time.Now().Add(1.9e9)}), "0s"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/test/framework/features/allowlist.txt

    // This file contains all test cases known to exist before 6/8/2020
    // It will be used to allow old test cases to lack feature labels,
    // while failing on new tests that don't use labels.
    authn_policy,TestAuthnPolicy
    authz_deny,TestAuthzDeny
    authz_ingress,TestAuthzIngress
    authz_jwt,TestAuthzJWT
    authz_tcp,TestAuthzTCP
    cert_mtls_test,TestCertMtls
    cert_provision_prometheus,TestPrometheusCert
    client_tracing_test,TestClientTracing
    cni,TestCNIReachability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        } catch (RejectedExecutionException e) {
          if (logger.get().isLoggable(WARNING)) {
            logger
                .get()
                .log(
                    WARNING,
                    String.format("while submitting close to %s; will close inline", executor),
                    e);
          }
          closeQuietly(closeable, directExecutor());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    			}
    			if err := sharedInformerFactory.Batch().V1().Jobs().Informer().GetIndexer().Add(job); err != nil {
    				t.Fatalf("error %v while adding the %v job to the index", err, klog.KObj(job))
    			}
    
    			if err := manager.syncJob(ctx, testutil.GetKey(job, t)); err != nil {
    				t.Fatalf("error %v while reconciling the job %v", err, testutil.GetKey(job, t))
    			}
    
    			if diff := cmp.Diff(tc.wantStatus, actual.Status); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: bucketMetricNamespace,
    		Subsystem: requestsSubsystem,
    		Name:      canceledTotal,
    		Help:      "Total number of S3 requests that were canceled from the client while processing on a bucket",
    		Type:      counterMetric,
    	}
    }
    
    func getILMNodeMetrics() *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        } catch (RejectedExecutionException e) {
          if (logger.get().isLoggable(WARNING)) {
            logger
                .get()
                .log(
                    WARNING,
                    String.format("while submitting close to %s; will close inline", executor),
                    e);
          }
          closeQuietly(closeable, directExecutor());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top