Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 175 for NOR (0.11 sec)

  1. docs/en/docs/alternatives.md

        Have an automatic API documentation web user interface.
    
    ### <a href="https://flask.palletsprojects.com" class="external-link" target="_blank">Flask</a>
    
    Flask is a "microframework", it doesn't include database integrations nor many of the things that come by default in Django.
    
    This simplicity and flexibility allow doing things like using NoSQL databases as the main data storage system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

            !padding_attr.isSplat() ||
            !padding_attr.getSplatValue<APInt>().isZero()) {
          return false;
        }
      } else {
        // If the padding value is neither float nor int, conservatively assume it
        // contains nonzeros.
        return false;
      }
    
      rewriter->replaceOpWithNewOp<MatrixDiagOp>(op, output_type, input);
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// that we have received the client's ACK, and at any rate we don't want to
    	// allow a misbehaving client to soak up server connections indefinitely by
    	// withholding an ACK, nor do we want to go through the complexity or overhead
    	// of using low-level APIs to figure out when a TCP round-trip has completed.
    	//
    	// Instead, we declare that we are “reasonably certain” that we received the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    				if tc.allowedEver {
    					t.Errorf("Pod should be allowed ever")
    				} else {
    					t.Errorf("Pod should not be allowed ever")
    				}
    			}
    
    			// if maps are neither nil nor empty
    			if len(podWorkers.startedStaticPodsByFullname) != 0 ||
    				len(podWorkers.startedStaticPodsByFullname) != len(tc.expectedStartedStaticPodsByFullname) {
    				if !reflect.DeepEqual(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/cache.go

    		// modload.Init exits if GOPATH[0] is empty, and cfg.GOMODCACHE
    		// is set to GOPATH[0]/pkg/mod if GOMODCACHE is empty, so this should never happen.
    		return fmt.Errorf("module cache not found: neither GOMODCACHE nor GOPATH is set")
    	}
    	if !filepath.IsAbs(cfg.GOMODCACHE) {
    		counterErrorsGOMODCACHEEntryRelative.Inc()
    		return fmt.Errorf("GOMODCACHE entry is relative; must be absolute path: %q.\n", cfg.GOMODCACHE)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    						assert(n < x.typ.(*Signature).TypeParams().Len())
    					}
    				}
    			}
    		}()
    	}
    
    	// Before Go 1.21, uninstantiated or partially instantiated argument functions are
    	// nor permitted. Checker.funcInst must infer missing type arguments in that case.
    	infer := true // for -lang < go1.21
    	n := len(elist)
    	if n > 0 && check.allowVersion(elist[0], go1_21) {
    		infer = false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/go/types/call.go

    						assert(n < x.typ.(*Signature).TypeParams().Len())
    					}
    				}
    			}
    		}()
    	}
    
    	// Before Go 1.21, uninstantiated or partially instantiated argument functions are
    	// nor permitted. Checker.funcInst must infer missing type arguments in that case.
    	infer := true // for -lang < go1.21
    	n := len(elist)
    	if n > 0 && check.allowVersion(elist[0], go1_21) {
    		infer = false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    [[creating_property_provider]]
    == Creating a Property or Provider instance
    
    Neither `Provider` nor its subtypes, such as `Property`, are intended to be implemented by a build script or plugin.
    Gradle provides factory methods to create instances of these types instead.
    
    In the previous example, two factory methods were presented:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    // that is neither present in the standard library nor in any module in the
    // build list.
    func (r *resolver) loadPackages(ctx context.Context, patterns []string, findPackage func(ctx context.Context, path string, m module.Version) (versionOk bool)) {
    	opts := modload.PackageOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    // It clears the mark bits in preparation for the next GC round.
    // Returns true if the span was returned to heap.
    // If preserve=true, don't return it to heap nor relink in mcentral lists;
    // caller takes care of it.
    func (sl *sweepLocked) sweep(preserve bool) bool {
    	// It's critical that we enter this function with preemption disabled,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top