Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 192 for scouse (0.14 sec)

  1. src/cmd/cgo/out.go

    	if !*gccgo {
    		fmt.Fprintf(fgo2, "//go:linkname _Cgo_always_false runtime.cgoAlwaysFalse\n")
    		fmt.Fprintf(fgo2, "var _Cgo_always_false bool\n")
    		fmt.Fprintf(fgo2, "//go:linkname _Cgo_use runtime.cgoUse\n")
    		fmt.Fprintf(fgo2, "func _Cgo_use(interface{})\n")
    	}
    	fmt.Fprintf(fgo2, "//go:linkname _Cgo_no_callback runtime.cgoNoCallback\n")
    	fmt.Fprintf(fgo2, "func _Cgo_no_callback(bool)\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	}
    	return nil
    }
    
    type LoadBalancing struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// routing_preference defines what scopes we want to keep traffic within.
    	// The `mode` determines how these routing preferences are handled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    With such a minimal configuration file, a project using _any_ external dependency or plugin would immediately start failing because it doesn't contain any checksum to verify.
    
    [[sec:verification-scope]]
    === Scope of the dependency verification
    
    A dependency verification configuration is _global_: a single file is used to configure verification of the whole build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
     * also cause future calls to the client to be rejected.
     *
     * ```java
     * client.dispatcher().executorService().shutdown();
     * ```
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    			expected:   "aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9",
    		},
    		{
    			cgroupPath: "/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod2fc932ce_fdcc_454b_97bd_aadfdeb4c340.slice/cri-o-aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9.scope",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

        }
    
        private Model interpolateModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems) {
            // save profile activations before interpolation, since they are evaluated with limited scope
            Map<String, Activation> originalActivations = getProfileActivations(model, true);
    
            Model interpolatedModel = new Model(modelInterpolator.interpolateModel(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    	{"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
    	// Field chain starting with function did not work.
    	{"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

        // except TypeVariable.
        return of(new TypeResolver().resolveType(runtimeType));
      }
    
      /**
       * Ensures that this type token doesn't contain type variables, which can cause unchecked type
       * errors for callers like {@link TypeToInstanceMap}.
       */
      @CanIgnoreReturnValue
      final TypeToken<T> rejectTypeVariables() {
        new TypeVisitor() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// Default is "*".
    	//
    	// +optional
    	Scope *ScopeType
    }
    
    // ScopeType specifies the type of scope being used
    type ScopeType string
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    	// Namespace objects are cluster-scoped.
    	ClusterScope ScopeType = "Cluster"
    	// NamespacedScope means that scope is limited to namespaced objects.
    	NamespacedScope ScopeType = "Namespaced"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top