Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for interest (0.35 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    genting
    
    // george : 2015-07-31 Wal-Mart Stores, Inc.
    george
    
    // ggee : 2014-01-09 GMO Internet, Inc.
    ggee
    
    // gift : 2013-10-17 DotGift, LLC
    gift
    
    // gifts : 2014-07-03 Binky Moon, LLC
    gifts
    
    // gives : 2014-03-06 Public Interest Registry
    gives
    
    // giving : 2014-11-13 Public Interest Registry
    giving
    
    // glass : 2013-11-07 Binky Moon, LLC
    glass
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <h2 id="Introduction">Introduction</h2>
    
    <p>
    This is the reference manual for the Go programming language as it was for
    language version 1.17, in October 2021, before the introduction of generics.
    It is provided for historical interest.
    The current reference manual can be found <a href="/doc/go_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      }
    
      TF_EXPECT_GRAPH_EQ(graphdef_expected, graphdef);
      TF_EXPECT_FUNCTIONDEFLIBRARY_EQ(library_expected, library);
    }
    
    // Test with two outside_compilation clusters that interact outside the compiled
    // subgraph, where the ancestor has no HostCompute Op.
    TEST(EncapsulateSubgraphsTest,
         OutsideCompilationClusterDependencyNoSrcCluster) {
      FunctionDefLibrary library;
      GraphDef graphdef;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				return *pod.Spec.Priority%2 == 0 && *pod.Spec.Priority < 0
    			},
    		},
    		{
    			name:     "preCheck isn't called if the event is not interested by any plugins",
    			podInfos: podInfos,
    			event:    PvAdd, // No plugin is interested in this event.
    			preEnqueueCheck: func(pod *v1.Pod) bool {
    				panic("preCheck shouldn't be called")
    			},
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name:    "one of the extenders is a binder and interested in pod",
    			podName: "pod0",
    			extenders: []framework.Extender{
    				&fakeExtender{isBinder: false, interestedPodName: "pod0"},
    				&fakeExtender{isBinder: true, interestedPodName: "pod0"},
    			},
    			wantBinderID: 1,
    		},
    		{
    			name:    "one of the extenders is a binder, but not interested in pod",
    			podName: "pod1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

       *   .addNetworkInterceptor(new LegacyRedirectInterceptor())
       *   .build();
       * ```
       */
      internal class LegacyRedirectInterceptor : Interceptor {
        override fun intercept(chain: Interceptor.Chain): Response {
          val response = chain.proceed(chain.request())
          val code = response.code
          if (code != HTTP_TEMP_REDIRECT && code != HTTP_PERM_REDIRECT) return response
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	cgroupsPerQOS bool
    
    	// If non-empty, pass this to the container runtime as the root cgroup.
    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    	// hostutil to interact with filesystems
    	hostutil hostutil.HostUtils
    
    	// subpather to execute subpath actions
    	subpather subpath.Interface
    
    	// Manager of non-Runtime containers.
    	containerManager cm.ContainerManager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    You would use it, for example, if your application is served from
                    different domains and you want to use the same Swagger UI in the
                    browser to interact with each of them (instead of having multiple
                    browser tabs open). Or if you want to leave fixed the possible URLs.
    
                    If the servers `list` is not provided, or is an empty `list`, the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    		return "build constraints exclude all Go files in " + e.Package.Dir
    	}
    	if len(e.Package.TestGoFiles)+len(e.Package.XTestGoFiles) > 0 {
    		// Test Go files exist, but we're not interested in them.
    		// The double-negative is unfortunate but we want e.Package.Dir
    		// to appear at the end of error message.
    		return "no non-test Go files in " + e.Package.Dir
    	}
    	return "no Go files in " + e.Package.Dir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top