Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for bufname (0.37 sec)

  1. buildscripts/checkdeps.sh

    #!/usr/bin/env bash
    #
    
    _init() {
    
    	shopt -s extglob
    
    	## Minimum required versions for build dependencies
    	GIT_VERSION="1.0"
    	GO_VERSION="1.16"
    	OSX_VERSION="10.8"
    	KNAME=$(uname -s)
    	ARCH=$(uname -m)
    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. tests/table_test.go

    				t.Errorf("failed to find unique constraint, got %v", constraints)
    			}
    		}
    	})
    
    	t.Run("namer", func(t *testing.T) {
    		uname := "custom_unique_name"
    		db, _ := gorm.Open(postgres.Open(postgresDSN), &gorm.Config{
    			NamingStrategy: mockUniqueNamingStrategy{
    				UName: uname,
    			},
    		})
    
    		user, err := schema.Parse(&LongString{}, &sync.Map{}, db.Config.NamingStrategy)
    		if err != nil {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Sat Mar 09 09:31:28 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. ci/official/envs/public_cache

    # ==============================================================================
    # Sourcing this enables Bazel remote cache (public, read-only)
    # The cache configs are different for MacOS and Linux
    if [[ $(uname -s) == "Darwin" ]]; then
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache"
    else
      TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1011 bytes
    - Viewed (0)
  4. ci/official/envs/disk_cache

    # limitations under the License.
    # ==============================================================================
    # Sourcing this enables local disk cache
    if [[ $(uname -s) == "Darwin" ]]; then
      echo "Please note that using disk cache on macOS is not recommended because the"
      echo "cache can end up being pretty big and make the build process inefficient."
    fi
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1023 bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.json

                  },
                  "type": "special"
                }
              ],
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Free"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "green",
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

                doColumn("state");
            }
    
            public void columnStreet() {
                doColumn("street");
            }
    
            public void columnSurname() {
                doColumn("surname");
            }
    
            public void columnTelephoneNumber() {
                doColumn("telephoneNumber");
            }
    
            public void columnTeletexTerminalIdentifier() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/main/config/es/fess_user_user.json

                "type" : "keyword"
              },
              "state" : {
                "type" : "keyword"
              },
              "street" : {
                "type" : "keyword"
              },
              "surname" : {
                "type" : "keyword"
              },
              "telephoneNumber" : {
                "type" : "keyword"
              },
              "teletexTerminalIdentifier" : {
                "type" : "keyword"
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            for (final Field field : clazz.getDeclaredFields()) {
                final String fname = field.getName();
                if (fieldDescCache.containsKey(fname)) {
                    continue;
                }
                setFieldAccessible(field);
                final FieldDescImpl fieldDesc = new FieldDescImpl(this, field);
                fieldDescCache.put(fname, fieldDesc);
                if (!FieldUtil.isInstanceField(field)) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate.go

    				return fmt.Errorf("could not create directory %s; %s", outputDir, err)
    			}
    		}
    		fname := filepath.Join(dirName, componentName) + ".yaml"
    		l.LogAndPrintf("Writing manifest to %s", fname)
    		if !dryRun {
    			if err := os.WriteFile(fname, []byte(ym), 0o644); err != nil {
    				return fmt.Errorf("could not write manifest config; %s", err)
    			}
    		}
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

        }
    
        public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setSurname_Terms("surname", opLambda, null);
        }
    
        public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) {
            setSurname_Terms("surname", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 212.4K bytes
    - Viewed (0)
Back to top