Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for 20something (0.18 sec)

  1. hack/local-up-cluster.sh

        if [[ "${REUSE_CERTS}" != true ]]; then
          # Clean previous dynamic certs
          # This file is owned by root, so we can't always overwrite it (depends if
          # we run the script as root or not). Let's remove it, that is something we
          # can always do: either we have write permissions as a user in CERT_DIR or
          # we run the rm with sudo.
          ${CONTROLPLANE_SUDO} rm -f "${CERT_DIR}"/kubelet-rotated.kubeconfig
    
          # Create Certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    )
    
    var (
    	extendedResourceA     = v1.ResourceName("example.com/aaa")
    	extendedResourceB     = v1.ResourceName("example.com/bbb")
    	kubernetesIOResourceA = v1.ResourceName("kubernetes.io/something")
    	kubernetesIOResourceB = v1.ResourceName("subdomain.kubernetes.io/something")
    	hugePageResourceA     = v1.ResourceName(v1.ResourceHugePagesPrefix + "2Mi")
    )
    
    func makeResources(milliCPU, memory, pods, extendedA, storage, hugePageA int64) v1.ResourceList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	}
    
    	// Fix up references to DLL import symbols now that we're done
    	// pulling in new objects.
    	if err := loadpe.PostProcessImports(); err != nil {
    		Errorf(nil, "%v", err)
    	}
    
    	// TODO: maybe do something similar to peimporteddlls to collect
    	// all lib names and try link them all to final exe just like
    	// libmingwex.a and libmingw32.a:
    	/*
    		for:
    		#cgo windows LDFLAGS: -lmsvcrt -lm
    		import:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			// contains matches q.pattern, we should have either selected the version
    			// of curM matching q, or reported a conflict error (and exited).
    			// If we're still here and the version doesn't match,
    			// something has gone very wrong.
    			reportError(q, fmt.Errorf("internal error: selected %v instead of %v", curM, rev.Version))
    		}
    	}
    }
    
    // performPathQueries populates the candidates for each query whose pattern is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	if MainModules.Index(mainModule).goVersion == "" && rs.pruning != workspace {
    		// TODO(#45551): Do something more principled instead of checking
    		// cfg.CmdName directly here.
    		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	if len(name) > chainNameBaseLengthMax {
    		name = name[:chainNameBaseLengthMax-3] + "..."
    	}
    	return name
    }
    
    // servicePortChainNameBase returns the base name for a chain for the given ServicePort.
    // This is something like "HASH-namespace/serviceName/protocol/portName", e.g,
    // "ULMVA6XW-ns1/svc1/tcp/p80".
    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            failure.assertHasCause('broken')
        }
    
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "ivy")
        def "custom metadata provider doesn't have to do something"() {
            given:
            buildFile << """
              class MP implements ComponentMetadataSupplier {
    
                void execute(ComponentMetadataSupplierDetails details) {
                    // does nothing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
      //        (Slice $input, [0, 0, ...], (Concat (ExpandDims $index, expand_dim =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            return true;
          }
          localValue = value; // we lost the cas, fall through and maybe cancel
        }
        // The future has already been set to something. If it is cancellation we should cancel the
        // incoming future.
        if (localValue instanceof Cancellation) {
          // we don't care if it fails, this is best-effort.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            return true;
          }
          localValue = value; // we lost the cas, fall through and maybe cancel
        }
        // The future has already been set to something. If it is cancellation we should cancel the
        // incoming future.
        if (localValue instanceof Cancellation) {
          // we don't care if it fails, this is best-effort.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top