Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 162 for Uncommon (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // numerical stability, subtract each batch with their max element so that
        // the maximum input value is zero. It can be shown that softmax computed
        // after adding or subtracting all inputs in a batch using a common value
        // gives mathematically equivalent result.
        auto max_logits =
            rewriter.create<TF::MaxOp>(loc, logits, reduce_dim,
                                       /*keep_dims=*/rewriter.getBoolAttr(true));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		// in this case. Leave $GOCACHE alone.
    	} else {
    		os.Setenv("GOCACHE", oldgocache)
    	}
    
    	if goos == oldgoos && goarch == oldgoarch {
    		// Common case - not setting up for cross-compilation.
    		timelog("build", "toolchain")
    		if vflag > 0 {
    			xprintf("\n")
    		}
    		xprintf("Building packages and commands for %s/%s.\n", goos, goarch)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseIdent())
    	}
    
    	return
    }
    
    // ----------------------------------------------------------------------------
    // Common productions
    
    // If lhs is set, result list elements which are identifiers are not resolved.
    func (p *parser) parseExprList(lhs bool) (list []ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "ExpressionList"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    			}
    		}
    		f.retPoset(po)
    	}
    }
    
    // prove removes redundant BlockIf branches that can be inferred
    // from previous dominating comparisons.
    //
    // By far, the most common redundant pair are generated by bounds checking.
    // For example for the code:
    //
    //	a[i] = 4
    //	foo(a[i])
    //
    // The compiler will generate the following code:
    //
    //	if i >= len(a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    		if t.ChanDir() != x.ChanDir() {
    			return cmpForNe(t.ChanDir() < x.ChanDir())
    		}
    
    	default:
    		e := fmt.Sprintf("Do not know how to compare %v with %v", t, x)
    		panic(e)
    	}
    
    	// Common element type comparison for TARRAY, TCHAN, TPTR, and TSLICE.
    	return t.Elem().cmp(x.Elem())
    }
    
    // IsKind reports whether t is a Type of the specified kind.
    func (t *Type) IsKind(et Kind) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingConfigs: {
    		Code:           "InvalidArgument",
    		Description:    "Configurations overlap. Configurations on the same bucket cannot share a common event type.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedNotification: {
    		Code:           "UnsupportedNotification",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    
    [[sec:dependencies_within_the_same_project]]
    === Dependencies within the same project
    
    A set of sources may depend on header files provided by another binary component within the same project. A common example is a native executable component that uses functions provided by a separate native library component.
    
    Such a library dependency can be added to a source set associated with the `executable` component:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    				}
    			}
    			w := &work{dt: dt}
    			w.cmd, w.flush = test.bgCommand(t, &w.out, &w.out)
    			t.worklist = append(t.worklist, w)
    			return nil
    		})
    	}
    	if test.pkg != "" && len(test.pkgs) == 0 {
    		// Common case. Avoid copying.
    		register1(test)
    		return
    	}
    	// TODO(dmitshur,austin): It might be better to unify the execution of 'go test pkg'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		klog.ErrorS(err, "GeneratePodSandboxConfig for pod failed", "pod", klog.KObj(pod))
    		configPodSandboxResult.Fail(kubecontainer.ErrConfigPodSandbox, message)
    		return
    	}
    
    	// Helper containing boilerplate common to starting all types of containers.
    	// typeName is a description used to describe this type of container in log messages,
    	// currently: "container", "init container" or "ephemeral container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. cmd/iam.go

    	hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicy(args)
    	if hasSessionPolicy {
    		return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(args))
    	}
    
    	// Sub policy not set, this is most common since subPolicy
    	// is optional, use the inherited policies.
    	return isOwnerDerived || combinedPolicy.IsAllowed(args)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top