Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for central (0.18 sec)

  1. src/cmd/go/internal/modload/init.go

    			break
    		}
    		dir = d
    	}
    	return "", ""
    }
    
    func findModulePath(dir string) (string, error) {
    	// TODO(bcmills): once we have located a plausible module path, we should
    	// query version control (if available) to verify that it matches the major
    	// version of the most recent tag.
    	// See https://golang.org/issue/29433, https://golang.org/issue/27009, and
    	// https://golang.org/issue/31549.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        }
    
        private static boolean isIneligibleForConventionMapping(PropertyMetadata property) {
            // Provider API types and convention-supporting types in general should have conventions set through convention() instead of
            // using convention mapping.
            return Provider.class.isAssignableFrom(property.getType()) || SupportsConvention.class.isAssignableFrom(property.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    					// not really a floating point
    					// constant. This can happen when the
    					// C compiler complains about using
    					// the value as an integer constant,
    					// but not as a general constant.
    					// Treat this as a variable of the
    					// appropriate type, not a constant,
    					// to get C-style type handling,
    					// avoiding the problem that C permits
    					// uint64(-1) but Go does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

          --service-account-signing-key-file="${SERVICE_ACCOUNT_KEY}" \
          --enable-admission-plugins="${ENABLE_ADMISSION_PLUGINS}" \
          --disable-admission-plugins="${DISABLE_ADMISSION_PLUGINS}" \
          --admission-control-config-file="${ADMISSION_CONTROL_CONFIG_FILE}" \
          --bind-address="${API_BIND_ADDR}" \
          --secure-port="${API_SECURE_PORT}" \
          --tls-cert-file="${CERT_DIR}/serving-kube-apiserver.crt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    					// "/sa/a". Since the namespace is ignored, we use ns2.B for our denied app (rather than ns2.A).
    					// We'll only need the service account for TCP, since we send headers in all other protocols
    					// to control the server's behavior.
    					allowed := apps.Ns1.A
    					var denied echo.Instances
    					if provider.IsProtocolSupported(protocol.TCP) {
    						denied = apps.Ns2.B
    					}
    
    					from := allowed.Append(denied)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // functions. All other functions that require or produce a *loader should pass
    // or return it as an explicit parameter.
    var loaded *loader
    
    // PackageOpts control the behavior of the LoadPackages function.
    type PackageOpts struct {
    	// TidyGoVersion is the Go version to which the go.mod file should be updated
    	// after packages have been loaded.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            return importAffectsUsagesOfClassesWithSameName(classToImport, importAllInParent)
        }
    
        /**
         * Same as above, but for more general callable symbols.
         *
         * Currently only checks constructor calls, assuming `true` for everything else.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

         * the second version is the newer.
         */
        private static int compareModelVersions(String first, String second) {
            // we use a dedicated comparator because we control our model version scheme.
            String[] firstSegments = first.split("\\.");
            String[] secondSegments = second.split("\\.");
            for (int i = 0; i < Math.max(firstSegments.length, secondSegments.length); i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    // limitations under the License.
    
    package serviceregistry_test
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sort"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		iov.SetLen(len(p))
    	}
    	var dummy byte
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if len(p) == 0 {
    			iov.Base = &dummy
    			iov.SetLen(1)
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	msg.Iov = &iov
    	msg.Iovlen = 1
    	if n, err = recvmsg(fd, &msg, flags); err != nil {
    		return
    	}
    	oobn = int(msg.Controllen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top