Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for qualify (0.31 sec)

  1. docs/bucket/notifications/README.md

    topic*               (string)    name of the MQTT topic to publish
    username             (string)    MQTT username
    password             (string)    MQTT password
    qos                  (number)    set the quality of service priority, defaults to '0'
    keep_alive_interval  (duration)  keep-alive interval for MQTT connections in s,m,h,d
    reconnect_interval   (duration)  reconnect interval for MQTT connections in s,m,h,d
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    			} else {
    				t.Errorf("unexpected equality: %v", rc.Spec.Selector)
    			}
    		}
    		if test.expectLabels != reflect.DeepEqual(rc2.Labels, rc2.Spec.Template.Labels) {
    			if test.expectLabels {
    				t.Errorf("expected: %v, got: %v", rc2.Spec.Template.Labels, rc2.Labels)
    			} else {
    				t.Errorf("unexpected equality: %v", rc.Labels)
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. plugin/pkg/admission/limitranger/admission_test.go

    */
    
    package limitranger
    
    import (
    	"context"
    	"fmt"
    	"strconv"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return *getSidSubAuthority(sid, idx)
    }
    
    // IsValid returns whether the SID has a valid revision and length.
    func (sid *SID) IsValid() bool {
    	return isValidSid(sid)
    }
    
    // Equals compares two SIDs for equality.
    func (sid *SID) Equals(sid2 *SID) bool {
    	return EqualSid(sid, sid2)
    }
    
    // IsWellKnown determines whether the SID matches the well-known sidType.
    func (sid *SID) IsWellKnown(sidType WELL_KNOWN_SID_TYPE) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    psi,
                    resolveCalleeExpressionOfFunctionCall,
                    resolveFragmentOfCall
                )
                // FIR does not resolve to a symbol for equality calls.
                is FirEqualityOperatorCall -> toKtCallInfo(psi)
                is FirSafeCallExpression -> selector.toKtCallInfo(
                    psi,
                    resolveCalleeExpressionOfFunctionCall,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"fmt"
    	"regexp"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/robfig/cron/v3"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	unversionedvalidation "k8s.io/apimachinery/pkg/apis/meta/v1/validation"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // (kLanczosGamma and kLanczosCoefficients.size() + 1). The coefficients below
    // correspond to [7, 9]. [5, 7], [7, 9], [9, 10], and [607/128.0, 15] were
    // evaluated and [7, 9] seemed to be the least sensitive to the quality of the
    // log function. In particular, [5, 7] is the only choice where -1.5e-5 <=
    // lgamma(2) <= 1.5e-5 for a particularly inaccurate log function.
    static constexpr double kLanczosGamma = 7;  // aka g
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	"k8s.io/apiextensions-apiserver/pkg/registry/customresource"
    	"k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    */
    
    package daemon
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sort"
    	"sync"
    	"time"
    
    	apps "k8s.io/api/apps/v1"
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

      // Predicate instances are interned, meaning that there is only a single
      // instance of a Predicate object with a given content.  This makes checking
      // for structural equality super-cheap -- we can just compare pointers.
      //
      // We intern predicates by maintaining a map from the content of a Predicate
      // to the only instance of said predicate we allow to exist in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top