Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,141 for get2s (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

            } catch (IOException e) {
                throw new RuntimeException("Failed encoding namespace ID '" + name + "'");
            }
        }
    
        /**
         * Gets the namespace for this identifier.
         *
         * @return the namespace for this identifier
         */
        public String getNamespace() {
            return namespace;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/gateway/secret.go

    		return false
    	}
    	return true
    }
    
    // Gets the namespace for the gateway (in terms of the actual workload selected by the gateway, NOT the namespace of the Gateway CRD)
    // Assumes that all selected workloads are in the same namespace, if this is not the case which one's namespace gets returned is undefined.
    func getGatewayNamespace(ctx analysis.Context, gw *v1alpha3.Gateway) resource.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

        };
        if (!llvm::all_of(operation->getOperands(), foldable_opr)) {
          return std::nullopt;
        }
        return FoldAdaptor(operation);
      }
    
      // Gets a list of ElementsAttr behind each constant operand.
      llvm::SmallVector<ElementsAttr> OperandData() {
        llvm::SmallVector<ElementsAttr> res;
        res.reserve(operation_->getNumOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitution.java

         *     <li>Any instance of <code>ModuleComponentSelector</code> or <code>ProjectComponentSelector</code></li>
         * </ul>
         *
         * @param notation the notation that gets parsed into an instance of {@link ComponentSelector}.
         */
        void useTarget(Object notation);
    
        /**
         * This method can be used to replace a dependency before it is resolved,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  5. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

            return path.toString();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
         * @deprecated Use {@link #getPath()} instead.
         */
        @Deprecated
        public File getFile() {
            return path.toFile();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/channels/unbounded_test.go

    	for i := 0; i < numWriters; i++ {
    		for j := 0; j < numWrites; j++ {
    			wantReads = append(wantReads, i)
    		}
    	}
    }
    
    // TestSingleWriter starts one reader and one writer goroutine and makes sure
    // that the reader gets all the value added to the buffer by the writer.
    func TestSingleWriter(t *testing.T) {
    	ub := NewUnbounded[int]()
    	reads := []int{}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Gets the number of successful tests.
      int successful_test_count() const;
    
      // Gets the number of failed tests.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests.
      int disabled_test_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/file/ArchiveOperationsIntegrationTest.groovy

                    @InputFile abstract RegularFileProperty getArchiveFile()
                    @OutputDirectory abstract DirectoryProperty getUnpackDir()
                    @Inject abstract FileSystemOperations getFs()
                    @Inject abstract ArchiveOperations getArchives()
                    @TaskAction void action() {
                        fs.copy {
                            from(archives.${archiveType}Tree(archiveFile))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    	return errors.New("runtime.encodable cannot be unmarshalled from JSON")
    }
    
    // Marshal may get called on pointers or values, so implement MarshalJSON on value.
    // http://stackoverflow.com/questions/21390979/custom-marshaljson-never-gets-called-in-go
    func (e encodable) MarshalJSON() ([]byte, error) {
    	return Encode(e.E, e.obj)
    }
    
    // NewEncodableList creates an object that will be encoded with the provided codec on demand.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  10. pkg/volume/util/recyclerclient/recycler_client_test.go

    			},
    			expectedError: "failed to recycle volume: Pod was active on the node longer than specified deadline",
    		},
    		{
    			// Recycler pod gets deleted
    			name:      "RecyclerDeleted",
    			createPod: newPod("podRecyclerDeleted", v1.PodPending, ""),
    			eventSequence: []watch.Event{
    				// Pod gets Running and Succeeded
    				newPodEvent(watch.Added, "podRecyclerDeleted", v1.PodPending, ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top