Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 142 for roots (0.3 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

        val fbRequest =
          Request.Builder()
            .url("https://graph.facebook.com/robots.txt?s=fb")
            .build()
        val twitterRequest =
          Request.Builder()
            .url("https://api.twitter.com/robots.txt?s=tw")
            .build()
        val googleRequest =
          Request.Builder()
            .url("https://www.google.com/robots.txt?s=g")
            .build()
    
        try {
          for (i in 1..2) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        private static final String X_ROBOTS_TAG = "X-Robots-Tag";
    
        private static final String META_NAME_THUMBNAIL_CONTENT = "//META[@name=\"thumbnail\" or @name=\"THUMBNAIL\"]/@content";
    
        private static final String META_PROPERTY_OGIMAGE_CONTENT = "//META[@property=\"og:image\"]/@content";
    
        private static final String META_NAME_ROBOTS_CONTENT = "//META[@name=\"robots\" or @name=\"ROBOTS\"]/@content";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

                    return false;
                };
            };
    
            final ResponseData responseData = new ResponseData();
            responseData.setUrl("http://example.com/");
            responseData.addMetaData("X-Robots-Tag", "noindex,nofollow");
    
            try {
                transformer.processXRobotsTag(responseData, new ResultData());
                fail();
            } catch (ChildUrlsException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

    class MathGradTest : public ::testing::Test {
     protected:
      MathGradTest() : root_(Scope::NewRootScope().WithDevice("/cpu:0")) {}
    
      template <typename T>
      void TestMatMulGrad(const bool t_x, const bool t_y) {
        TestMatMulGradHelper<T>(
            /*is_x_batch=*/false, /*is_y_batch=*/false, t_x, t_y,
            [&](Output x, Output y) {
              return MatMul(root_, x, y, MatMul::TransposeA(t_x).TransposeB(t_y));
            });
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    				indexer.Add(test.current)
    			}
    
    			ops := NewFlowSchemaOps(client, flowcontrollisters.NewFlowSchemaLister(indexer))
    			boots := []*flowcontrolv1.FlowSchema{test.bootstrap}
    			strategy := test.strategy()
    			err := EnsureConfigurations(context.Background(), ops, boots, strategy)
    			if err != nil {
    				t.Fatalf("Expected no error, but got: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/strategy.go

    // At the first error, if any, it stops and returns that error.
    func EnsureConfigurations[ObjectType configurationObjectType](ctx context.Context, ops ObjectOps[ObjectType], boots []ObjectType, strategy EnsureStrategy[ObjectType]) error {
    	for _, bo := range boots {
    		err := EnsureConfiguration(ctx, ops, bo, strategy)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    			}
    
    			ops := NewPriorityLevelConfigurationOps(client, flowcontrollisters.NewPriorityLevelConfigurationLister(indexer))
    			boots := []*flowcontrolv1.PriorityLevelConfiguration{test.bootstrap}
    			strategy := test.strategy()
    
    			err := EnsureConfigurations(context.Background(), ops, boots, strategy)
    			if err != nil {
    				t.Fatalf("Expected no error, but got: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/mime/mediatype_test.go

    		{`"My value"end`, "My value", "end"},
    		{`"My value" end`, "My value", " end"},
    		{`"\\" rest`, "\\", " rest"},
    		{`"My \" value"end`, "My \" value", "end"},
    		{`"\" rest`, "", `"\" rest`},
    		{`"C:\dev\go\robots.txt"`, `C:\dev\go\robots.txt`, ""},
    		{`"C:\新建文件夹\中文第二次测试.mp4"`, `C:\新建文件夹\中文第二次测试.mp4`, ""},
    	}
    	for _, test := range tests {
    		value, rest := consumeValue(test[0])
    		expectedValue := test[1]
    		expectedRest := test[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		"/pod3-c1":      getTestContainerInfo(seedPod3Container1, pName3, namespace0, cName31),
    	}
    
    	freeRootfsInodes := rootfsInodesFree
    	totalRootfsInodes := rootfsInodes
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity:   rootfsCapacity,
    		Available:  rootfsAvailable,
    		InodesFree: &freeRootfsInodes,
    		Inodes:     &totalRootfsInodes,
    	}
    
    	freeImagefsInodes := imagefsInodesFree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager_linux.go

    	// allocatable of the node
    	cm.nodeInfo = node
    
    	if localStorageCapacityIsolation {
    		rootfs, err := cm.cadvisorInterface.RootFsInfo()
    		if err != nil {
    			return fmt.Errorf("failed to get rootfs info: %v", err)
    		}
    		for rName, rCap := range cadvisor.EphemeralStorageCapacityFromFsInfo(rootfs) {
    			cm.capacity[rName] = rCap
    		}
    	}
    
    	// Ensure that node allocatable configuration is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top