Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,161 for INC (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_verifiers.h"
    
    #define GET_OP_FWD_DEFINES
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_all_ops.h.inc"
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authorizationconfig/metrics/metrics.go

    	authorizationConfigAutomaticReloadLastTimestampSeconds.WithLabelValues("failure", apiServerIDHash).SetToCurrentTime()
    }
    
    func RecordAuthorizationConfigAutomaticReloadSuccess(apiServerID string) {
    	apiServerIDHash := getHash(apiServerID)
    	authorizationConfigAutomaticReloadsTotal.WithLabelValues("success", apiServerIDHash).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h

    };
    
    }  // namespace tf_mlrt
    }  // namespace tensorflow
    
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h.inc"
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/licenses.adoc

    // Copyright (C) 2023 Gradle, Inc.
    //
    // Licensed under the Creative Commons Attribution-Noncommercial-ShareAlike 4.0 International License.;
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //      https://creativecommons.org/licenses/by-nc-sa/4.0/
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/cyphar/filepath-securejoin/LICENSE

    = vendor/github.com/cyphar/filepath-securejoin licensed under: =
    
    Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved.
    Copyright (C) 2017 SUSE LLC. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.cc

        : mlir::Dialect(/*name=*/"tf_mlrt_tpu", context,
                        mlir::TypeID::get<TensorflowMlrtTpuDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.cpp.inc"
          >();
    }
    
    }  // namespace tf_mlrt_tpu
    }  // namespace tensorflow
    
    //===----------------------------------------------------------------------===//
    // TableGen'd op method definitions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.h

    #include "mlir/Interfaces/SideEffectInterfaces.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/common/ir/QuantOpsDialect.h.inc"
    #define GET_OP_CLASSES
    
    #include "tensorflow/compiler/mlir/quantization/common/ir/QuantOps.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/controller/repair.go

    func (c *Repair) runOnce() error {
    	return retry.RetryOnConflict(retry.DefaultBackoff, func() error {
    		err := c.doRunOnce()
    		if err != nil {
    			nodePortRepairReconcileErrors.Inc()
    		}
    		return err
    	})
    }
    
    // doRunOnce verifies the state of the port allocations and returns an error if an unrecoverable problem occurs.
    func (c *Repair) doRunOnce() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. pkg/webhooks/webhookpatch_test.go

    		if key.Name == "conflict-for-ever" {
    			retries.Inc()
    			return errors.New("conflict error")
    		}
    		if key.Name == "conflict-success" {
    			retries.Inc()
    			if retries.Load() < 5 {
    				return errors.New("conflict error")
    			}
    			success.Inc()
    			return nil
    		}
    		success.Inc()
    		return nil
    	})
    	go queue.Run(test.NewStop(t))
    	retry.UntilOrFail(t, queue.HasSynced)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 09:53:38 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    	return &StackCounter{name: name, depth: depth, file: &defaultFile}
    }
    
    // Inc increments a stack counter. It computes the caller's stack and
    // looks up the corresponding counter. It then increments that counter,
    // creating it if necessary.
    func (c *StackCounter) Inc() {
    	pcs := make([]uintptr, c.depth)
    	n := runtime.Callers(2, pcs) // caller of Inc
    	pcs = pcs[:n]
    
    	c.mu.Lock()
    	defer c.mu.Unlock()
    
    	// Existing counter?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top