Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Visiting (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    eachFile { fcd ->
                        println("visiting ${fcd.path}")
                        fcd.path = "sub/${fcd.path}"
                    }
                }
            '''
    
            when:
            run 'copy'
    
            then:
            output.count('visiting ') == 2
            outputContains('visiting a.txt')
            outputContains('visiting dir/b.txt')
            file('dest').assertHasDescendants(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

            // fine and we have a bug in deadness analysis.
            return errors::Internal("Could not find input ", in_edge->DebugString(),
                                    " to ", n->name(),
                                    " when visiting the graph in post-order.  Most "
                                    "likely indicates a bug in deadness analysis.");
          }
          result->push_back(it->second);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            fileTreeDependencies.toList() == [task]
            filteredFileTreeDependencies.toList() == [task]
            3 * taskResolver.resolveTask("task") >> task
            0 * _
        }
    
        def "does not resolve paths when visiting dependencies"() {
            given:
            collection.from('ignore')
    
            when:
            collection.buildDependencies.getDependencies(null)
    
            then:
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    	if mark[lib] == visiting {
    		panic("found import cycle while visiting " + lib.Pkg)
    	}
    	mark[lib] = visiting
    	for _, i := range lib.Imports {
    		dfs(i, mark, order)
    	}
    	mark[lib] = visited
    	*order = append(*order, lib)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			continue
    		}
    		ft.update(parent, v, w, i, r)
    	}
    }
    
    // addLocalInductiveFacts adds inductive facts when visiting b, where
    // b is a join point in a loop. In contrast with findIndVar, this
    // depends on facts established for b, which is why it happens when
    // visiting b.
    //
    // TODO: It would be nice to combine this with findIndVar.
    func addLocalInductiveFacts(ft *factsTable, b *Block) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. cmd/object-api-listobjects_test.go

    		// Its to test ListObjects on an empty bucket.
    		2: "empty-bucket",
    		// Listing the case where the marker > last object.
    		3: "test-bucket-single-object",
    		// Listing uncommon delimiter.
    		4: "test-bucket-delimiter",
    		// Listing prefixes > maxKeys
    		5: "test-bucket-max-keys-prefixes",
    		// Listing custom delimiters
    		6: "test-bucket-custom-delimiter",
    	}
    	for _, bucket := range testBuckets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    		// Test cases with prefixes.
    		// Testing listing with prefix set to "min" (Test number 40)	.
    		{bucketNames[2], "min", "", "", "", 100, listMultipartResults[26], nil, true},
    		// Testing listing with prefix set to "ney" (Test number 41).
    		{bucketNames[2], "ney", "", "", "", 100, listMultipartResults[27], nil, true},
    		// Testing listing with prefix set to "par" (Test number 42).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that user listing does not return any entries
    	usersList, err := s.adm.ListUsers(ctx)
    	if err != nil {
    		c.Fatalf("list users should not fail: %v", err)
    	}
    	if len(usersList) != 1 {
    		c.Fatalf("expected user listing output: %v", usersList)
    	}
    	uinfo := usersList[userDN]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    }
    
    // return URL for a listing pending multipart uploads.
    func getListMultipartURL(endPoint, bucketName string) string {
    	queryValue := url.Values{}
    	queryValue.Set("uploads", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for listing pending multipart uploads with parameters.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            failure.assertHasCause("Could not resolve group:projectA:1.+.")
            failure.assertHasCause("No cached version listing for group:projectA:1.+ available for offline mode.")
            failure.assertHasCause("Could not resolve group:projectB:latest.release.")
            failure.assertHasCause("No cached version listing for group:projectB:latest.release available for offline mode.")
    
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top