Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 165 for uncommon (0.31 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    return null;
                }).filter(v -> {
                    if (v == null) {
                        return false;
                    }
                    if ("admin".equalsIgnoreCase(v.getValue3()) || "common".equalsIgnoreCase(v.getValue3())
                            || "error".equalsIgnoreCase(v.getValue3()) || "login".equalsIgnoreCase(v.getValue3())
                            || "profile".equalsIgnoreCase(v.getValue3())) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/test-utils_test.go

    	globalIsDistErasure = false
    
    	// Disable printing console messages during tests.
    	color.Output = io.Discard
    	// Disable Error logging in testing.
    	logger.DisableErrorLog = true
    
    	// Uncomment the following line to see trace logs during unit tests.
    	// logger.AddTarget(console.New())
    
    	// Set system resources to maximum.
    	setMaxResources(serverCtxt{})
    
    	// Initialize globalConsoleSys system
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/object-api-multipart_test.go

    		{bucketNames[2], "minio-object", objectNames[1], "", "", 10, listMultipartResults[34], nil, true},
    	}
    
    	for i, testCase := range testCases {
    		// fmt.Println(i+1, testCase) // uncomment to peek into the test cases.
    		actualResult, actualErr := obj.ListMultipartUploads(context.Background(), testCase.bucket, testCase.prefix, testCase.keyMarker, testCase.uploadIDMarker, testCase.delimiter, testCase.maxUploads)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  10. 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)
Back to top