Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for identical (0.71 sec)

  1. src/time/time.go

    // Location and the monotonic clock reading. Therefore, Time values should not
    // be used as map or database keys without first guaranteeing that the
    // identical Location has been set for all values, which can be achieved
    // through use of the UTC or Local method, and that the monotonic clock reading
    // has been stripped by setting t = t.Round(0). In general, prefer t.Equal(u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    	// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
    	// and the same audit annotation key, the annotation key will be identical.
    	// In this case, the first annotation written with the key will be included
    	// in the audit event and all subsequent annotations with the same key
    	// will be discarded.
    	//
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		}
    		// Make sure to return object info to provide extra information.
    		return toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    	// verify that the object queued for transition is identical to that on disk.
    	if !opts.MTime.Equal(fi.ModTime) || !strings.EqualFold(opts.Transition.ETag, extractETag(fi.Metadata)) {
    		return toObjectErr(errFileNotFound, bucket, object)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/runtime/map.go

    			// This code handles the case where the key
    			// has been deleted, updated, or deleted and reinserted.
    			// NOTE: we need to regrab the key as it has potentially been
    			// updated to an equal() but not identical key (e.g. +0.0 vs -0.0).
    			rk, re := mapaccessK(t, h, k)
    			if rk == nil {
    				continue // key has been deleted
    			}
    			it.key = rk
    			it.elem = re
    		}
    		it.bucket = bucket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// "{ValidatingAdmissionPolicy name}/{key}".
    	//
    	// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
    	// and the same audit annotation key, the annotation key will be identical.
    	// In this case, the first annotation written with the key will be included
    	// in the audit event and all subsequent annotations with the same key
    	// will be discarded.
    	//
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    			// Index "none" queries to make noneForPath more efficient.
    			if q.isWildcard() {
    				r.wildcardNones = append(r.wildcardNones, q)
    			} else {
    				// All "<path>@none" queries for the same path are identical; we only
    				// need to index one copy.
    				r.nonesByPath[q.pattern] = q
    			}
    		}
    	}
    
    	return r
    }
    
    // initialSelected returns the version of the module with the given path that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Make cond and body functions for the new while op.
      // Create the function based on input and result types and values.
      // Note, for a while loop body function, the operand types and result types
      // are identical.
      auto body_func_type = mlir::FunctionType::get(
          &getContext(), new_while_operand_types, new_while_operand_types);
      auto cond_func_type = mlir::FunctionType::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    
    	// Creating SE should give us instances
    	createConfigs([]*config.Config{wle, se1}, store, t)
    	events.WaitOrFail(t, "service")
    	expectServiceInstances(t, sd, se1, 0, expected)
    
    	// Create another identical SE (different name) gives us duplicate instances
    	// Arguable whether this is correct or not...
    	createConfigs([]*config.Config{se2}, store, t)
    	events.WaitOrFail(t, "service")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top