Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for notsan (0.58 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

         * elements.
         *
         * <p><b>Warning:</b> this may have unexpected results if a backing set of this view uses a
         * nonstandard notion of equivalence, for example if it is a {@link TreeSet} using a comparator
         * that is inconsistent with {@link Object#equals(Object)}.
         */
        @SuppressWarnings("nullness") // Unsafe, but we can't fix it now.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    requirement check. Possible values are:\n\n- In: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field) is in the set of specified values.\n- NotIn: the requirement is satisfied if at least one container exit code\n  (might be multiple if there are multiple containers not restricted\n  by the 'containerName' field) is not in the set of specified values.\nAdditional values are considered to be...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // Generic opcodes typically specify a width. The inputs and outputs
    // of that op are the given number of bits wide. There is no notion of
    // "sign", so Add32 can be used both for signed and unsigned 32-bit
    // addition.
    
    // Signed/unsigned is explicit with the extension ops
    // (SignExt*/ZeroExt*) and implicit as the arg to some opcodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value iotaM =
            rewriter.create<IotaOp>(loc, iota_type, rewriter.getI64IntegerAttr(1));
        Value iotaN =
            rewriter.create<IotaOp>(loc, iota_type, rewriter.getI64IntegerAttr(2));
    
        // Boradcasted constants, of the same shape as iotaM and iotaN.
        Value b_zero = BroadcastConstant(loc, indices_shape, 0, 32, rewriter);
        Value b_false = BroadcastConstant(loc, indices_shape, 0, 1, rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		busy mSpanList
    	}
    
    	// Restore 64-bit alignment on 32-bit.
    	_ uint32
    
    	// bytesMarked is the number of bytes marked this cycle. This
    	// includes bytes blackened in scanned objects, noscan objects
    	// that go straight to black, and permagrey objects scanned by
    	// markroot during the concurrent scan phase. This is updated
    	// atomically during the cycle. Updates may be batched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    		return cmpForNe(r.Name < s.Name)
    	}
    	return CMPeq
    }
    
    // cmp compares two *Types t and x, returning CMPlt,
    // CMPeq, CMPgt as t<x, t==x, t>x, for an arbitrary
    // and optimizer-centric notion of comparison.
    // TODO(josharian): make this safe for recursive interface types
    // and use in signatlist sorting. See issue 19869.
    func (t *Type) cmp(x *Type) Cmp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. cmd/admin-handlers-users.go

    		}
    
    		// NOTE: if not using LDAP, then internal IDP or open ID is
    		// being used - in the former, group info is enforced when
    		// generated credentials are used to make requests, and in the
    		// latter, a group notion is not supported.
    	}
    
    	newCred, updatedAt, err := globalIAMSys.NewServiceAccount(ctx, targetUser, targetGroups, opts)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    		return true
    	}
    	return false
    }
    
    // flagConstant represents the result of a compile-time comparison.
    // The sense of these flags does not necessarily represent the hardware's notion
    // of a flags register - these are just a compile-time construct.
    // We happen to match the semantics to those of arm/arm64.
    // Note that these semantics differ from x86: the carry flag has the opposite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "default": "",
                "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                "type": "string"
              },
              "values": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Fusion optimization for GPU targets";
      let description = [{
        This pass is performing fusion specific to GPU targets. This is an ad-hoc
        pass for now, but should be integrated with some notion of "target" in the
        MLIR pipeline in the future.
      }];
      let constructor = "TF::CreateGpuOpFusionPass()";
    }
    
    def BatchMatMulToEinsumPass : Pass<"tf-batch-matmul-to-tf-einsum", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top