Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for INC (0.12 sec)

  1. index.yaml

        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

            "ir/tfl_ops_dialect.cc.inc",
            "ir/tfl_ops_dialect.h.inc",
            "ir/tfl_ops_enums.cc.inc",
            "ir/tfl_ops_enums.h.inc",
            "ir/tfl_ops_interface.cc.inc",
            "ir/tfl_ops_interface.h.inc",
            "runtime_verifiers.inc",
            "utils/attribute_utils.cc",
        ],
        hdrs = [
            "ir/tfl_ops.h",
            "transforms/passes.h",
            "utils/attribute_utils.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    		metrics.SchedulerQueueIncomingPods.WithLabelValues("backoff", ScheduleAttemptFailure).Inc()
    	} else {
    		p.unschedulablePods.addOrUpdate(pInfo)
    		logger.V(5).Info("Pod moved to an internal scheduling queue", "pod", klog.KObj(pod), "event", ScheduleAttemptFailure, "queue", unschedulablePods)
    		metrics.SchedulerQueueIncomingPods.WithLabelValues("unschedulable", ScheduleAttemptFailure).Inc()
    	}
    
    	p.addNominatedPodUnlocked(logger, pInfo.PodInfo, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			return err
    		}
    
    		metrics.StartedContainersTotal.WithLabelValues(metricLabel).Inc()
    		if sc.HasWindowsHostProcessRequest(pod, spec.container) {
    			metrics.StartedHostProcessContainersTotal.WithLabelValues(metricLabel).Inc()
    		}
    		klog.V(4).InfoS("Creating container in pod", "containerType", typeName, "container", spec.container, "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/sync/atomic/atomic_test.go

    		if vlo == 1e4 {
    			new = 0
    		}
    	} else {
    		vlo := v & ((1 << 32) - 1)
    		vhi := v >> 32
    		if vlo != vhi {
    			t.Fatalf("Uintptr: %#x != %#x", vlo, vhi)
    		}
    		inc := uint64(1 + 1<<32)
    		new = v + uintptr(inc)
    	}
    	StoreUintptr(addr, new)
    }
    
    //go:nocheckptr
    func hammerStoreLoadUintptrMethod(t *testing.T, paddr unsafe.Pointer) {
    	addr := (*Uintptr)(paddr)
    	v := addr.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                }
                val incOrDecOperationKind = psi.getInOrDecOperationKind()
                val baseExpression = deparenthesize(psi.baseExpression)
    
                // handle inc/dec/ with array access convention
                if (fir is FirFunctionCall && fir.calleeReference.name == OperatorNameConventions.SET && baseExpression is KtArrayAccessExpression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		if err != nil {
    			logger.Error(err, "Failed to execute iptables-restore", "table", utiliptables.TableNAT)
    			metrics.IPTablesRestoreFailuresTotal.Inc()
    			encounteredError = true
    		}
    	}
    
    	// Flush and remove all of our "-t filter" chains.
    	iptablesData.Reset()
    	if err := ipt.SaveInto(utiliptables.TableFilter, iptablesData); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		metrics.JobFinishedNum.WithLabelValues(completionMode, "succeeded", "").Inc()
    	} else {
    		jm.recorder.Event(job, v1.EventTypeWarning, finishedCond.Reason, finishedCond.Message)
    		metrics.JobFinishedNum.WithLabelValues(completionMode, "failed", finishedCond.Reason).Inc()
    	}
    	return true
    }
    
    func filterInUncountedUIDs(uncounted []types.UID, include sets.Set[string]) []types.UID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        protected DirContextHolder getDirContext(final Supplier<Hashtable<String, String>> envSupplier) {
            DirContextHolder holder = contextLocal.get();
            if (holder != null) {
                holder.inc();
                return holder;
            }
            final Hashtable<String, String> env = envSupplier.get();
            try {
                holder = new DirContextHolder(new InitialDirContext(env));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    namespace mlir {
    
    namespace {
    
    constexpr char kDeviceAttr[] = "device";
    
    #define GEN_PASS_DEF_RESOURCEOPLIFTINGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.h.inc"
    
    // Lift resource operations out of device computation.
    struct ResourceOpLiftingPass
        : public impl::ResourceOpLiftingPassBase<ResourceOpLiftingPass> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top