Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 957 for prepending (0.16 sec)

  1. src/cmd/go/internal/search/search.go

    			//
    			// This converts a path like "./io/" to "io". Without this step, running
    			// "cd $GOROOT/src; go list ./io/..." would incorrectly skip the io
    			// package, because prepending the prefix "./" to the unclean path would
    			// result in "././io", and match("././io") returns false.
    			top = true
    			path = filepath.Clean(path)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

        }
        String ancestorName = name.substring(substringFrom);
    
        return new InternetDomainName(ancestorName, ancestorParts);
      }
    
      /**
       * Creates and returns a new {@code InternetDomainName} by prepending the argument and a dot to
       * the current name. For example, {@code InternetDomainName.from("foo.com").child("www.bar")}
       * returns a new {@code InternetDomainName} with the value {@code www.bar.foo.com}. Only lenient
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InternetDomainName.java

        }
        String ancestorName = name.substring(substringFrom);
    
        return new InternetDomainName(ancestorName, ancestorParts);
      }
    
      /**
       * Creates and returns a new {@code InternetDomainName} by prepending the argument and a dot to
       * the current name. For example, {@code InternetDomainName.from("foo.com").child("www.bar")}
       * returns a new {@code InternetDomainName} with the value {@code www.bar.foo.com}. Only lenient
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      return rewriter->create<TF::FillOp>(
          loc,
          tensorflow::GetTypeFromTFTensorShape({-1}, rewriter->getIntegerType(32)),
          shape_tensor, scalar_val);
    }
    
    // Returns a new type by prepending the specified dimension to the shape of
    // the given type if it is a ranked type.
    Type PrependLeadingDimIfRanked(int64_t dim, Type type,
                                   PatternRewriter *rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/gover/gover.go

    // It also provides some helpers for extracting versions from go.mod files
    // and for dealing with module.Versions that may use Go versions or semver
    // depending on the module path.
    package gover
    
    import (
    	"internal/gover"
    )
    
    // Compare returns -1, 0, or +1 depending on whether
    // x < y, x == y, or x > y, interpreted as toolchain versions.
    // The versions x and y must not begin with a "go" prefix: just "1.21" not "go1.21".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        setup-konnectivity-agent-manifest
      fi
      if [[ "${ENABLE_CLUSTER_DNS:-}" == "true" ]]; then
        # Create a new directory for the DNS addon and prepend a "0" on the name.
        # Prepending "0" to the directory ensures that add-on manager
        # creates the dns service first. This ensures no other add-on
        # can "steal" the designated DNS clusterIP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/controller/job/indexed_job_utils_test.go

    				{"5", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodRunning},
    				{"0", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    			wantRm: []indexPhase{
    				{"0", v1.PodPending},
    				{"0", v1.PodRunning},
    				{"3", v1.PodPending},
    				{"6", v1.PodRunning},
    				{"6", v1.PodPending},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/math/const.go

    )
    
    // Integer limit values.
    const (
    	intSize = 32 << (^uint(0) >> 63) // 32 or 64
    
    	MaxInt    = 1<<(intSize-1) - 1  // MaxInt32 or MaxInt64 depending on intSize.
    	MinInt    = -1 << (intSize - 1) // MinInt32 or MinInt64 depending on intSize.
    	MaxInt8   = 1<<7 - 1            // 127
    	MinInt8   = -1 << 7             // -128
    	MaxInt16  = 1<<15 - 1           // 32767
    	MinInt16  = -1 << 15            // -32768
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 14:07:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. pkg/volume/util/recyclerclient/recycler_client_test.go

    			createPod: newPod("podRecyclerDeleted", v1.PodPending, ""),
    			eventSequence: []watch.Event{
    				// Pod gets Running and Succeeded
    				newPodEvent(watch.Added, "podRecyclerDeleted", v1.PodPending, ""),
    				newEvent(v1.EventTypeNormal, "Successfully assigned recycler-for-podRecyclerDeleted to 127.0.0.1"),
    				newPodEvent(watch.Deleted, "podRecyclerDeleted", v1.PodPending, ""),
    			},
    			expectedEvents: []mockEvent{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Returns true if this resource exists, false if it does not exist. A resource exists when it has content associated with it.
         *
         * <p>Note that this method may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
         * @return true if this resource exists.
         * @throws ResourceException On failure to check whether resource exists.
         */
        boolean getExists() throws ResourceException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top