Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 387 for IsString (0.11 sec)

  1. src/test/java/org/codelibs/fess/it/admin/AccessTokenTests.java

        private static final String NAME_PREFIX = "accessTokenTest_";
        private static final String API_PATH = "/api/admin/accesstoken";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "name";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/ChainingTransformer.java

                    Object value = transformer.call(original);
                    if (type.isInstance(value)) {
                        return type.cast(value);
                    }
                    if (type == String.class && value instanceof GString) {
                        return type.cast(value.toString());
                    }
                    return original;
                }
            });
        }
    
        public boolean hasTransformers() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/UniqueId.java

            this.value = value;
        }
    
        public String asString() {
            return value;
        }
    
        @Override
        public String toString() {
            return asString();
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/TestReferenceResolveResultRenderer.kt

                else -> return nonLocalFqName.asString()
            }
            val container = (symbol as? KaSymbolWithKind)?.getContainingSymbol() ?: return null
            val parents = generateSequence(container) { it.getContainingSymbol() }.toList().asReversed()
            return "<local>: " + parents.joinToString(separator = ".") { (it as? KaNamedSymbol)?.name?.asString() ?: "<no name>" }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 31 19:52:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/test/cert/ca/intermediate.go

    // the DNS SANs.
    func NewIstioConfig(systemNamespace string) (string, error) {
    	return tmpl.Evaluate(istioConfTemplate, map[string]any{
    		"SystemNamespace": systemNamespace,
    	})
    }
    
    // IntermediateCA is an intermediate CA for a single cluster.
    type Intermediate struct {
    	KeyFile  string
    	ConfFile string
    	CSRFile  string
    	CertFile string
    	Root     Root
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

            test::AsTensor<tstring>({"foo.txt"}, TensorShape({})), path_outputs[0]);
      }
    
      void CheckSavedModelBundle(const string& export_dir,
                                 const SavedModelBundleLite& bundle) {
        ValidateAssets(export_dir, bundle);
        // Retrieve the regression signature from the bundle.
        const auto& signature_def = bundle.GetSignatures().at("regress_x_to_y");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.h"
    
    #include <cstring>
    #include <initializer_list>
    
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

            } else {
                return new PBXObject(id, object)
            }
        }
    
        private static NSString toNSString(NSObject object) {
            return (NSString)object
        }
    
        class PBXObject {
            final String id
            private final NSDictionary object
    
            PBXObject(String id, NSDictionary object) {
                this.id = id
                this.object = object
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/icu.go

    /*
    #cgo LDFLAGS: -licui18n.57 -licuuc.57
    #include <stdlib.h>
    #include <unicode/ustring.h>
    #include <unicode/utypes.h>
    #include <unicode/localpointer.h>
    #include <unicode/ucasemap.h>
    */
    import "C"
    
    import "unsafe"
    
    func doICU(tag, caser, input string) string {
    	err := C.UErrorCode(0)
    	loc := C.CString(tag)
    	cm := C.ucasemap_open(loc, C.uint32_t(0), &err)
    
    	buf := make([]byte, len(input)*4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/objective-c/groovy/src/main/objc/greeter.m

    #import "greeter.h"
    
    @implementation Greeter
    
    - (void) sayHello {
        NSString *helloWorld = @"Hello world!";
        fprintf(stdout, "%s\n", [helloWorld UTF8String]);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
Back to top