Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for ginvine (0.21 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                      "format_string": {
                                        "text_format_source": {
                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                "object_key": "envoy.filters.listener.original_dst.local_ip",
                                "format_string": {
                                  "text_format_source": {
                                    "inline_string": "%FILTER_STATE(envoy.filters.listener.original_dst.local_ip:PLAIN)%"
                                  }
                                },
                                "shared_with_upstream": "ONCE"
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                                      "format_string": {
                                        "text_format_source": {
                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    }
    
    // InlineData returns whether inline data has been set.
    // Note that false does not mean there is no inline data,
    // only that it is unlikely.
    func (j xlMetaV2Object) InlineData() bool {
    	_, ok := j.MetaSys[ReservedMetadataPrefixLower+"inline-data"]
    	return ok
    }
    
    func (j *xlMetaV2Object) ResetInlineData() {
    	delete(j.MetaSys, ReservedMetadataPrefixLower+"inline-data")
    }
    
    const (
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  5. configure.py

      )
    
      if get_var(
          environ_cp, 'TF_OVERRIDE_EIGEN_STRONG_INLINE', 'Eigen strong inline',
          True, ('Would you like to override eigen strong inline for some C++ '
                 'compilation to reduce the compilation time?'),
          'Eigen strong inline overridden.', 'Not overriding eigen strong inline, '
          'some compilations could take more than 20 mins.'):
        # Due to a known MSVC compiler issue
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    			ModTime: st.ModTime(),
    		})
    	}
    	return stat, nil
    }
    
    // CleanAbandonedData will read metadata of the object on disk
    // and delete any data directories and inline data that isn't referenced in metadata.
    // Metadata itself is not modified, only inline data.
    func (s *xlStorage) CleanAbandonedData(ctx context.Context, volume string, path string) error {
    	if volume == "" || path == "" {
    		return nil // Ignore
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  7. tests/query_test.go

    	if len(results) != 1 {
    		t.Fatalf("Search all records with inline map")
    	}
    
    	CheckUser(t, results[0], users[2])
    
    	var results2 []User
    	DB.Find(&results2, map[string]interface{}{"name": users[3].Name, "company_id": nil})
    	if len(results2) != 0 {
    		t.Errorf("Search all records with inline map containing null value finding 0 records")
    	}
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

                        )
                    }
                )
                check(ktCallInfos.size <= 1) { "Should only return 1 KtCallInfo" }
                ktCallInfos.singleOrNull()
            }
        }
    
        private inline fun <T> getCallInfo(
            psi: KtElement,
            getErrorCallInfo: FirDiagnosticHolder.(psiToResolve: KtElement) -> List<T>,
            getCallInfo: FirElement.(
                psiToResolve: KtElement,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        fun addInterceptor(interceptor: Interceptor) =
          apply {
            interceptors += interceptor
          }
    
        @JvmName("-addInterceptor") // Prefix with '-' to prevent ambiguous overloads from Java.
        inline fun addInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addInterceptor(Interceptor { chain -> block(chain) })
    
        /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

                checkEntryNotNull(key, value);
                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
              // Inline the Comparator implementation rather than transforming with a Function
              // to save code size.
              Arrays.sort(
                  entryArray,
                  0,
                  size,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top