Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 229 for idea (0.06 sec)

  1. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
        One line to give the program's name and a brief idea of what it does.
        Copyright (C) <year> <name of author>
    
        This program is free software; you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    }
    
    // Timing
    
    // itoaDiv formats val/(10**dec) into buf.
    func itoaDiv(buf []byte, val uint64, dec int) []byte {
    	i := len(buf) - 1
    	idec := i - dec
    	for val >= 10 || i >= idec {
    		buf[i] = byte(val%10 + '0')
    		i--
    		if i == idec {
    			buf[i] = '.'
    			i--
    		}
    		val /= 10
    	}
    	buf[i] = byte(val + '0')
    	return buf[i:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    			ptr := &l.buckets[a][b]
    			if !yield(ptr) {
    				return
    			}
    		}
    	}
    }
    
    // parseEventBatches reads per-P event batches and merges them into a single, consistent
    // stream. The high level idea is as follows. Events within an individual batch
    // are in correct order, because they are emitted by a single P. So we need to
    // produce a correct interleaving of the batches. To do this we take first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    					"-A", string(internalTrafficChain),
    					args,
    					"-j", string(kubeMarkMasqChain))
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    			proxier.natRules.Write(
    				args, "dst,dst",
    				"-j", string(kubeMarkMasqChain))
    		} else if proxier.localDetector.IsImplemented() {
    			// This masquerades off-cluster traffic to a service VIP.  The idea
    			// is that you can establish a static route for your Service range,
    			// routing to any node, and that node will bridge into the Service
    			// for you.  Since that might bounce off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. helm-releases/minio-5.2.0.tgz

    shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store # Common VCS dirs .git/ .gitignore .bzr/ .bzrignore .hg/ .hgignore .svn/ # Common backup files *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS file for Kubernetes OWNERS minio/README.md # MinIO Community Helm Chart [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![license](https://img.shields.io/badge/license-AGPL%20V3-blue)](https://githu...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.  At least that's the idea.
    // There are various irregularities.  For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (worklist.empty()) {
            LLVM_DEBUG(llvm::dbgs() << "[root node]\n");
            if (auto dea = mlir::dyn_cast<DenseIntElementsAttr>(ret)) {
              if (dea.getNumElements() != 1) {
                LLVM_DEBUG(llvm::dbgs() << "Unexpected number of elements\n");
                return {};
              }
              int64_t val = (*dea.getValues<APInt>().begin()).getSExtValue();
              dims[i] = ic->MakeDim(val);
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    		return false
    	}
    }
    
    // cloneToExternal takes the existing object file symbol (symIdx)
    // and creates a new external symbol payload that is a clone with
    // respect to name, version, type, relocations, etc. The idea here
    // is that if the linker decides it wants to update the contents of
    // a symbol originally discovered as part of an object file, it's
    // easier to do this if we make the updates to an external symbol
    // payload.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Declarative DSL Tooling Builders for IDEs"
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":declarative-dsl-evaluator"))
        implementation(project(":declarative-dsl-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 572 bytes
    - Viewed (0)
Back to top